Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,4 +10,7 @@ RUN mkdir /.cache && chmod 777 /.cache
|
|
10 |
|
11 |
COPY . .
|
12 |
|
|
|
|
|
|
|
13 |
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
|
|
|
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"]
|