Move webserver source into a subdirectory.
This commit is contained in:
parent
42860188c6
commit
fa5268f608
|
@ -1,4 +1,5 @@
|
||||||
FROM python:3
|
FROM python:3
|
||||||
RUN pip install -U Flask
|
RUN pip install -U Flask
|
||||||
ADD hello.py ./
|
WORKDIR /
|
||||||
CMD ["python", "hello.py"]
|
ADD ./src/ /src/
|
||||||
|
CMD ["python", "/src/webserver.py"]
|
||||||
|
|
Loading…
Reference in New Issue