Dyraa18 commited on
Commit
8d0fad7
·
verified ·
1 Parent(s): 5466fbf
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -7,5 +7,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
7
 
8
  WORKDIR /app
9
 
 
 
 
 
 
10
  ENV PORT=7860
11
  CMD ["bash", "app.sh"]
 
7
 
8
  WORKDIR /app
9
 
10
+ COPY requirements.txt ./requirements.txt
11
+ RUN pip install --upgrade pip && pip install -r requirements.txt
12
+
13
+ COPY . .
14
+
15
  ENV PORT=7860
16
  CMD ["bash", "app.sh"]