FROM debian8_python3 ADD app /app RUN pip3 install -r /app/requirements.txt; \ mkdir /data VOLUME ["/data"] ENTRYPOINT python3 /app/main.py