Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -15,5 +15,5 @@ WORKDIR /data
|
|
15 |
# Create the storage directory and set permissions
|
16 |
RUN mkdir -p ${STORAGE_DIR} && chmod -R 777 ${STORAGE_DIR}
|
17 |
|
18 |
-
# Command to run SQLite Web using the
|
19 |
-
CMD sqlite_web --host=0.0.0.0 --port=${SERVER_PORT}
|
|
|
15 |
# Create the storage directory and set permissions
|
16 |
RUN mkdir -p ${STORAGE_DIR} && chmod -R 777 ${STORAGE_DIR}
|
17 |
|
18 |
+
# Command to run SQLite Web using the correct option for specifying the database file
|
19 |
+
CMD sqlite_web --host=0.0.0.0 --port=${SERVER_PORT} ${SQLITE_DATABASE}
|