Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -12
Dockerfile
CHANGED
@@ -1,18 +1,10 @@
|
|
1 |
-
|
2 |
-
FROM python:3.10-slim
|
3 |
|
4 |
-
# Set working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Copy requirements and install dependencies
|
8 |
COPY requirements.txt .
|
9 |
-
RUN pip install
|
10 |
|
11 |
-
|
12 |
-
COPY main.py .
|
13 |
|
14 |
-
|
15 |
-
EXPOSE 8000
|
16 |
-
|
17 |
-
# Command to run the app with gunicorn
|
18 |
-
CMD ["gunicorn", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "main:app", "--bind", "0.0.0.0:8000"]
|
|
|
1 |
+
FROM python:3.10
|
|
|
2 |
|
|
|
3 |
WORKDIR /app
|
4 |
|
|
|
5 |
COPY requirements.txt .
|
6 |
+
RUN pip install -r requirements.txt
|
7 |
|
8 |
+
COPY . .
|
|
|
9 |
|
10 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
|
|
|
|