mirror of
https://gitlab.com/stilobique/blender-docker.git
synced 2026-05-27 20:27:47 +02:00
6d0f2ef59d
Add Pycharm run configuration. Update readme with small information.
19 lines
339 B
YAML
19 lines
339 B
YAML
image: docker:19.03.12
|
|
|
|
compliance_job:
|
|
stage: build
|
|
only:
|
|
changes:
|
|
- build.json
|
|
|
|
job-build-docker-latest:
|
|
stage: build
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- apk add python3
|
|
- apk add py3-pip
|
|
- python3 -m pip install --upgrade pip
|
|
- python3 -m pip install -r requirement-build.txt
|
|
- python3 main.py
|