2020-07-15 09:13:10 +02:00
|
|
|
FROM python:3.7
|
|
|
|
COPY conductor/ /app/conductor
|
|
|
|
COPY pyexecplugins/ /app/pyexecplugins
|
2020-07-17 12:53:05 +02:00
|
|
|
COPY requirements.txt pyrest.py pyexec.py config.cfg entrypoint.sh /app/
|
|
|
|
RUN pip install -r /app/requirements.txt
|
2020-07-15 09:13:10 +02:00
|
|
|
WORKDIR /app
|
2020-07-17 12:53:05 +02:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|