SanjeevB1 commited on
Commit
d83c3c9
·
verified ·
1 Parent(s): f1e3968

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -8,6 +8,10 @@ ENV FLASK_ENV=development
8
  # Set the working directory
9
  WORKDIR /app
10
 
 
 
 
 
11
  # Copy files to the container
12
  COPY . .
13
 
 
8
  # Set the working directory
9
  WORKDIR /app
10
 
11
+ # Change permissions to ensure data.db is writable
12
+ RUN chmod -R 777 /app
13
+
14
+
15
  # Copy files to the container
16
  COPY . .
17