Move webserver source into a subdirectory.
This commit is contained in:
parent
42860188c6
commit
fa5268f608
|
@ -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"]
|
||||
|
|
Loading…
Reference in New Issue