pythonprincess commited on
Commit
6a942b7
·
verified ·
1 Parent(s): 473e75c

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- # Use a minimal Python image
2
- FROM python:3.10-slim
3
-
4
- # Set working directory
5
- WORKDIR /app
6
-
7
- # Copy all files
8
- COPY . .
9
-
10
- # Install Python dependencies
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # Expose port (Hugging Face expects 7860 by default for Docker Spaces)
14
- EXPOSE 7860
15
-
16
- # Start the FastAPI app using Uvicorn
17
- CMD ["uvicorn", "api_service:app", "--host", "0.0.0.0", "--port", "7860"]