asv7j commited on
Commit
68af9f0
·
verified ·
1 Parent(s): fb9a22f

Update DockerFile

Browse files
Files changed (1) hide show
  1. 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" , "flask", "run", "--host=0.0.0.0"]
 
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"]