conductor-worker-python/docker/d4science/Dockerfile

9 lines
341 B
Docker

FROM python:3.7
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 /app/
WORKDIR /app
ENTRYPOINT ["/app/entrypoint.sh"]