shelfgot commited on
Commit
c4c2bd7
·
verified ·
1 Parent(s): 619aa44

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -21
Dockerfile CHANGED
@@ -1,22 +1,21 @@
1
  FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
-
5
- # Install system dependencies
6
- RUN apt-get update && apt-get install -y \
7
- build-essential \
8
- && rm -rf /var/lib/apt/lists/*
9
-
10
- # Copy requirements and install Python dependencies
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- # Copy application code
15
- COPY . .
16
-
17
- # Expose port (HF Spaces uses 7860 by default)
18
- EXPOSE 7860
19
-
20
- # Run the application
21
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
22
-
 
1
  FROM python:3.10-slim
2
+
3
+ # Set working directory
4
+ WORKDIR /app
5
+
6
+ # Install system dependencies (if needed)
7
+ RUN apt-get update && apt-get install -y \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ # Copy requirements and install Python dependencies
11
+ COPY requirements.txt .
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
+
14
+ # Copy application code
15
+ COPY . .
16
+
17
+ # Expose port (HF Spaces uses 7860)
18
+ EXPOSE 7860
19
+
20
+ # Run the FastAPI server
21
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]