Seyomi commited on
Commit
5a33839
Β·
verified Β·
1 Parent(s): 5f08083

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -17
Dockerfile CHANGED
@@ -1,17 +1,10 @@
1
- # Use official Python base image
2
- FROM python:3.10-slim
3
-
4
- # Set working directory
5
- WORKDIR /app
6
-
7
- # Copy everything
8
- COPY . .
9
-
10
- # Install dependencies
11
- RUN pip install --upgrade pip && pip install -r requirements.txt
12
-
13
- # Expose port
14
- EXPOSE 7860
15
-
16
- # Run the app
17
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY . .
9
+
10
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]