PhoenixStormJr commited on
Commit
d9ef3c1
·
verified ·
1 Parent(s): a2af7ef

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -12,7 +12,8 @@ COPY . .
12
  ENV MPLCONFIGDIR=/tmp/.matplotlib
13
  ENV NUMBA_CACHE_DIR=/tmp/numba_cache
14
 
15
- RUN mkdir -p /app/TEMP && chmod 777 /app/TEMP
 
16
 
17
  RUN pip3 install -r requirements.txt
18
 
 
12
  ENV MPLCONFIGDIR=/tmp/.matplotlib
13
  ENV NUMBA_CACHE_DIR=/tmp/numba_cache
14
 
15
+ # Create writable app folders for logging and temp files
16
+ RUN mkdir -p /app/logs /app/TEMP && chmod -R 777 /app/logs /app/TEMP
17
 
18
  RUN pip3 install -r requirements.txt
19