Update DockerFile
Browse files- DockerFile +10 -10
DockerFile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
FROM python:3.9
|
2 |
-
|
3 |
-
WORKDIR /python-docker
|
4 |
-
|
5 |
-
COPY requirements.txt requirements.txt
|
6 |
-
RUN pip3 install -r requirements.txt
|
7 |
-
|
8 |
-
COPY . .
|
9 |
-
|
10 |
-
CMD [ "python3", "-m" , "
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
|
3 |
+
WORKDIR /python-docker
|
4 |
+
|
5 |
+
COPY requirements.txt requirements.txt
|
6 |
+
RUN pip3 install -r requirements.txt
|
7 |
+
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
CMD [ "python3", "-m" , "app", "run", "--host=0.0.0.0", "--port=8000"]
|