pranit144 commited on
Commit
761b8e7
·
verified ·
1 Parent(s): 32867aa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -9
Dockerfile CHANGED
@@ -1,18 +1,14 @@
1
- # Use an official Python runtime as a parent image
2
  FROM python:3.9-slim
3
 
4
- # Set the working directory
5
  WORKDIR /app
6
-
7
- # Copy the application files to the container
8
  COPY . /app
9
 
10
- # Install Python dependencies
11
- RUN pip install --no-cache-dir -r requirements.txt
12
 
 
 
13
 
14
- # Expose the Flask port (Hugging Face Spaces uses port 7860 by default)
15
  EXPOSE 7860
16
 
17
- # Command to run the Flask app
18
- CMD ["python", "app.py"]
 
 
1
  FROM python:3.9-slim
2
 
 
3
  WORKDIR /app
 
 
4
  COPY . /app
5
 
6
+ ENV PYTHONUNBUFFERED=1
 
7
 
8
+ # install dependencies (ensure requirements.txt contains gunicorn)
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
 
 
11
  EXPOSE 7860
12
 
13
+ # Use shell form to allow ${PORT:-7860} expansion
14
+ CMD ["sh", "-c", "gunicorn -w 1 -b 0.0.0.0:${PORT:-7860} app:app"]