conductor-worker-python/docker/d4science/Dockerfile

10 lines
412 B
Docker

FROM python:3.7-slim
RUN apt-get update && apt-get install curl -y
COPY ./docker/d4science/requirements.txt /app/
RUN pip install -r /app/requirements.txt
COPY conductor/ /app/conductor
COPY pyexecplugins/ /app/pyexecplugins
COPY ./docker/d4science/requirements.txt PyExec.py ./docker/d4science/config.cfg ./docker/d4science/entrypoint.sh logging-docker.conf /app/
WORKDIR /app
ENTRYPOINT ["/app/entrypoint.sh"]