igor04091968 commited on
Commit
4300e31
·
1 Parent(s): a997899

Fix: Re-add pip install requirements.txt to Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -37,6 +37,9 @@ RUN apt-get update && \
37
 
38
  WORKDIR /app
39
 
 
 
 
40
  COPY . .
41
 
42
  EXPOSE 7860
 
37
 
38
  WORKDIR /app
39
 
40
+ COPY requirements.txt .
41
+ RUN pip install --no-cache-dir -r requirements.txt
42
+
43
  COPY . .
44
 
45
  EXPOSE 7860