understanding commited on
Commit
cec7336
·
verified ·
1 Parent(s): 8f71a44

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -14,8 +14,8 @@ RUN git clone https://github.com/testingol/ckptw-wabot.git . && \
14
  npm install --omit=dev
15
 
16
  # Create necessary directories and set permissions
17
- RUN mkdir -p ./session ./downloads ./state && \
18
- chmod -R 777 ./session ./downloads ./state
19
 
20
  # Copy any local custom files (if applicable, e.g., your bot code)
21
  # Uncomment this line if you have local modifications to include
 
14
  npm install --omit=dev
15
 
16
  # Create necessary directories and set permissions
17
+ RUN mkdir -p ./session ./downloads ./state ./app/database.json && \
18
+ chmod -R 777 ./session ./downloads ./state ./app/database.json
19
 
20
  # Copy any local custom files (if applicable, e.g., your bot code)
21
  # Uncomment this line if you have local modifications to include