Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
39 |
RUN pip install --no-cache-dir -r requirements.txt \
|
40 |
-
&& pip install --no-cache-dir
|
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 |
-
#
|
52 |
EXPOSE 7860
|
53 |
|
54 |
-
# Run the app with
|
55 |
-
CMD ["
|
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"]
|
|
|
|