Update Dockerfile
Browse files- 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 |
|