pvanand commited on
Commit
3f7f141
·
verified ·
1 Parent(s): 60bfc3d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -19,6 +19,9 @@ ENV IPYTHONDIR=/app/ipython
19
  # Create the directory for IPython config and set write permissions
20
  RUN mkdir -p /app/ipython && chmod -R 777 /app/ipython
21
 
 
 
 
22
  # Install any needed packages specified in requirements.txt
23
  RUN pip install --no-cache-dir -r requirements.txt
24
 
 
19
  # Create the directory for IPython config and set write permissions
20
  RUN mkdir -p /app/ipython && chmod -R 777 /app/ipython
21
 
22
+ # Create an output folder and give it all permissions
23
+ RUN mkdir -p /app/output && chmod -R 777 /app/output
24
+
25
  # Install any needed packages specified in requirements.txt
26
  RUN pip install --no-cache-dir -r requirements.txt
27