9 lines
307 B
Docker
9 lines
307 B
Docker
|
FROM python:3.7
|
||
|
COPY ./docker/base/requirements.txt /app/
|
||
|
RUN pip install -r /app/requirements.txt
|
||
|
COPY conductor/ /app/conductor
|
||
|
COPY pyexecplugins/ /app/pyexecplugins
|
||
|
COPY ./docker/base/requirements.txt PyExec.py config.cfg ./docker/base/entrypoint.sh /app/
|
||
|
WORKDIR /app
|
||
|
ENTRYPOINT ["/app/entrypoint.sh"]
|