Omkar1806 commited on
Commit
2fd1333
·
verified ·
1 Parent(s): 03df1f5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -11
Dockerfile CHANGED
@@ -1,19 +1,20 @@
1
- # Base image
2
  FROM python:3.11-slim
3
 
4
- # Set work directory
 
 
 
 
5
  WORKDIR /app
6
 
7
- # Install dependencies
8
- COPY requirements.txt .
9
- RUN pip install --no-cache-dir -r requirements.txt
10
 
11
- # Copy project files
12
- COPY . .
13
 
14
- # Expose the port Hugging Face expects
15
  EXPOSE 7860
16
 
17
- # --- YAHAN CHANGE HAI ---
18
- # Command to run Gradio app directly
19
- CMD ["python", "app.py"]
 
 
1
  FROM python:3.11-slim
2
 
3
+ # User setup for Hugging Face
4
+ RUN useradd -m -u 1000 user
5
+ USER user
6
+ ENV PATH="/home/user/.local/bin:${PATH}"
7
+
8
  WORKDIR /app
9
 
10
+ # Copy and install as user
11
+ COPY --chown=user requirements.txt .
12
+ RUN pip install --no-cache-dir --user -r requirements.txt
13
 
14
+ COPY --chown=user . .
 
15
 
16
+ # Expose port
17
  EXPOSE 7860
18
 
19
+ # Run the app
20
+ CMD ["python", "app.py"]