Update Dockerfile
Browse files- Dockerfile +7 -4
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
|
39 |
RUN pip install --no-cache-dir -r requirements.txt \
|
40 |
-
&& pip install --no-cache-dir gunicorn
|
41 |
|
42 |
# Copy the current directory contents into the container
|
43 |
COPY . /app
|
@@ -48,7 +48,10 @@ RUN chown -R chrome:chrome /app
|
|
48 |
# Switch to chrome user
|
49 |
USER chrome
|
50 |
|
51 |
-
#
|
52 |
EXPOSE 7860
|
53 |
|
54 |
-
|
|
|
|
|
|
|
|
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 |
# 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 |
+
|