understanding commited on
Commit
688dddc
·
verified ·
1 Parent(s): 7cbdf30

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -7,9 +7,9 @@ WORKDIR /app
7
  # Create the data directory for persistent template storage
8
  # This ensures the directory exists when the application starts.
9
  # Permissions are usually fine by default for the user running the app.
10
- RUN mkdir -p ./app/data && \
11
 
12
- chmod -R 777 ./app/data
13
 
14
  # Copy the requirements file into the container at /app
15
  COPY requirements.txt .
 
7
  # Create the data directory for persistent template storage
8
  # This ensures the directory exists when the application starts.
9
  # Permissions are usually fine by default for the user running the app.
10
+ RUN mkdir -p ./data/app_template_storage && \
11
 
12
+ chmod -R 777 ./data/app_template_storage
13
 
14
  # Copy the requirements file into the container at /app
15
  COPY requirements.txt .