Move webserver source into a subdirectory.

This commit is contained in:
Leonora Tindall 2019-09-09 16:44:00 -05:00
parent 42860188c6
commit fa5268f608
Signed by: nora
GPG Key ID: 99041B68DBC02DAC
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
FROM python:3
RUN pip install -U Flask
ADD hello.py ./
CMD ["python", "hello.py"]
WORKDIR /
ADD ./src/ /src/
CMD ["python", "/src/webserver.py"]