VietCat commited on
Commit
11c6c99
·
1 Parent(s): ec666c4

init project

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,8 +3,8 @@ FROM python:3.10-slim
3
  WORKDIR /app
4
  COPY . .
5
 
6
- RUN pip install --upgrade pip \
7
- && pip install -r requirements.txt
8
 
9
  EXPOSE 7860
10
  CMD ["python", "app.py"]
 
3
  WORKDIR /app
4
  COPY . .
5
 
6
+ RUN pip install --upgrade pip
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  EXPOSE 7860
10
  CMD ["python", "app.py"]