Pamudu13 commited on
Commit
a864a35
·
verified ·
1 Parent(s): e7f85a4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -7
Dockerfile CHANGED
@@ -35,9 +35,9 @@ RUN apt-get update && apt-get install -y \
35
  # Copy requirements file
36
  COPY requirements.txt .
37
 
38
- # Install Python dependencies including Gunicorn and Gevent
39
  RUN pip install --no-cache-dir -r requirements.txt \
40
- && pip install --no-cache-dir gunicorn gevent
41
 
42
  # Copy the current directory contents into the container
43
  COPY . /app
@@ -48,10 +48,8 @@ RUN chown -R chrome:chrome /app
48
  # Switch to chrome user
49
  USER chrome
50
 
51
- # Expose the port that the app will run on
52
  EXPOSE 7860
53
 
54
- # Run the app with Gunicorn
55
- CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--worker-class", "gevent", "--workers", "4"]
56
-
57
-
 
35
  # Copy requirements file
36
  COPY requirements.txt .
37
 
38
+ # Install Python dependencies
39
  RUN pip install --no-cache-dir -r requirements.txt \
40
+ && pip install --no-cache-dir hypercorn
41
 
42
  # Copy the current directory contents into the container
43
  COPY . /app
 
48
  # Switch to chrome user
49
  USER chrome
50
 
51
+ # Make port 7860 available to the world outside this container
52
  EXPOSE 7860
53
 
54
+ # Run the app with Hypercorn
55
+ CMD ["hypercorn", "app:app", "--bind", "0.0.0.0:7860"]