xyplon commited on
Commit
6e3795b
·
verified ·
1 Parent(s): f906832

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 gunicorn && \
12
- pip install --no-cache-dir -r requirements.txt
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