Swapnil-101 commited on
Commit
ffe079a
·
verified ·
1 Parent(s): d1f3d7e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -10,7 +10,8 @@ RUN mkdir /.cache && chmod 777 /.cache
10
 
11
  COPY . .
12
 
13
- # Copy SQLite database file into container
14
- COPY users.db /code/users.db
15
 
16
  CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
 
 
 
10
 
11
  COPY . .
12
 
13
+ RUN touch users.db && chmod 777 users.db
 
14
 
15
  CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
16
+
17
+