Advay-Singh commited on
Commit
ca65ab6
·
verified ·
1 Parent(s): 2c44e5f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -11
Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
- FROM python:3.9
2
-
3
- WORKDIR /app
4
-
5
- COPY requirements.txt .
6
-
7
- RUN pip install --no-cache-dir -r requirements.txt
8
-
9
- COPY . .
10
-
11
- CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:main"]
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ COPY . .
10
+
11
+ CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]