Spaces:
BG5
/
Sleeping

BG5 commited on
Commit
b349664
·
verified ·
1 Parent(s): 6b09d78

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -19,10 +19,10 @@ RUN apt-get update && apt-get install -y \
19
  sqlite3 \
20
  tzdata \
21
 
22
- COPY ./requirements.txt /code/requirements.txt
23
 
24
 
25
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
26
 
27
  COPY . .
28
 
 
19
  sqlite3 \
20
  tzdata \
21
 
22
+ COPY . .
23
 
24
 
25
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
26
 
27
  COPY . .
28