Mauricio-100 commited on
Commit
aaf1c1a
·
verified ·
1 Parent(s): 019d40b

Update Dockerfile

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