зеркало из https://github.com/mozilla/bugbug.git
14 строки
340 B
Plaintext
14 строки
340 B
Plaintext
FROM python:3.8.1-slim
|
|
|
|
# Setup dependencies in a cacheable step
|
|
ADD spawn_pipeline_requirements.txt /code/
|
|
|
|
RUN pip install --disable-pip-version-check --quiet --no-cache-dir -r /code/spawn_pipeline_requirements.txt
|
|
|
|
ADD spawn_pipeline.py /code
|
|
|
|
ADD data-pipeline.yml /code
|
|
ADD check-pipeline.yml /code
|
|
|
|
CMD python /code/spawn_pipeline.py
|