Hamusssss12 commited on
Commit
bff2d3c
·
verified ·
1 Parent(s): 753d1eb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -4,7 +4,9 @@ WORKDIR /app
4
 
5
  COPY requirements.txt .
6
 
7
- RUN pip install flask
 
 
8
 
9
  EXPOSE 7860
10
 
 
4
 
5
  COPY requirements.txt .
6
 
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ COPY . .
10
 
11
  EXPOSE 7860
12