Kaballas commited on
Commit
97a9671
·
verified ·
1 Parent(s): eabb92b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 shell form to allow variable expansion
19
- CMD sqlite_web --host=0.0.0.0 --port=${SERVER_PORT} --database=${SQLITE_DATABASE}
 
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}