Updates os version to debian 9

Changes to debian9_python3 image because of outdated setup tools
Fixed a typo as well
This commit is contained in:
Joachim Lusiardi 2018-08-11 13:05:51 +02:00
parent 5a961d096b
commit 879669b4f7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM debian8_python3
FROM debian9_python3
COPY requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt; \
@ -9,6 +9,6 @@ ADD main.py /main.py
ADD config.py /config.py
VOLUME ["/data"]
VOLUME ["/app/config]
VOLUME ["/app/config"]
EXPOSE 5000
ENTRYPOINT python3 /main.py