xyplon
commited on
Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -8,9 +8,8 @@ WORKDIR /app
|
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
# Install Gunicorn and your application dependencies
|
| 11 |
-
RUN pip install --no-cache-dir
|
| 12 |
-
|
| 13 |
-
|
| 14 |
# Expose the port that Gunicorn will listen on
|
| 15 |
EXPOSE 7860
|
| 16 |
|
|
|
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
# Install Gunicorn and your application dependencies
|
| 11 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
+
RUN pip install gunicorn gevent
|
|
|
|
| 13 |
# Expose the port that Gunicorn will listen on
|
| 14 |
EXPOSE 7860
|
| 15 |
|