Kaballas commited on
Commit
eabb92b
·
verified ·
1 Parent(s): 98fcad2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -8
Dockerfile CHANGED
@@ -1,9 +1,3 @@
1
- # Use the base image for AnythingLLM
2
- FROM mintplexlabs/anythingllm:render
3
- USER root
4
- # Create storage directory and link
5
- RUN mkdir -p /data/storage
6
- RUN ln -s /data/storage /storage
7
  # Use the official SQLite Web image as the base image
8
  FROM ghcr.io/coleifer/sqlite-web:latest
9
 
@@ -21,5 +15,5 @@ WORKDIR /data
21
  # Create the storage directory and set permissions
22
  RUN mkdir -p ${STORAGE_DIR} && chmod -R 777 ${STORAGE_DIR}
23
 
24
- # Command to run SQLite Web
25
- CMD ["sqlite_web", "--host=0.0.0.0", "--port=${SERVER_PORT}", "--database=${SQLITE_DATABASE}"]
 
 
 
 
 
 
 
1
  # Use the official SQLite Web image as the base image
2
  FROM ghcr.io/coleifer/sqlite-web:latest
3
 
 
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}