1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-07-03 20:38:46 +00:00
test-tutorial-framework/controller/Dockerfile

13 lines
286 B
Docker
Raw Normal View History

FROM avatao/controller:debian-buster
USER root
ENV PYTHONPATH="/usr/local/lib" \
2019-07-24 13:52:38 +00:00
TFW_PUB_PORT=7654 \
TFW_PULL_PORT=8765 \
TFW_AUTH_KEY="/tmp/tfw-auth.key" \
CONTROLLER_PORT=5555
COPY ./controller/ /
CMD ["python3", "/opt/server.py"]