sigyllly commited on
Commit
c0bbedf
·
verified ·
1 Parent(s): 977d327

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -17,6 +17,10 @@ RUN apt-get update && \
17
  RUN mkdir uploads compiled && \
18
  chmod -R 777 uploads compiled
19
 
 
 
 
 
20
  # Copy the requirements file
21
  COPY ./requirements.txt /app/requirements.txt
22
 
 
17
  RUN mkdir uploads compiled && \
18
  chmod -R 777 uploads compiled
19
 
20
+ # Set permissions for uploads and compiled directories
21
+ RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
22
+
23
+
24
  # Copy the requirements file
25
  COPY ./requirements.txt /app/requirements.txt
26