Cistern commited on
Commit
1567970
·
verified ·
1 Parent(s): b516d8e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -4
Dockerfile CHANGED
@@ -2,14 +2,10 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # Copy all files
6
  COPY . .
7
 
8
- # Install dependencies
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
- # Expose port
12
  EXPOSE 7860
13
 
14
- # Run FastAPI
15
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
2
 
3
  WORKDIR /app
4
 
 
5
  COPY . .
6
 
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
 
9
  EXPOSE 7860
10
 
 
11
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]