a1c00l commited on
Commit
8935d92
·
verified ·
1 Parent(s): d96afbc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -14,6 +14,9 @@ RUN pip install --no-cache-dir -r requirements.txt
14
  # Copy all application files (including setup.py)
15
  COPY . /app
16
 
 
 
 
17
  # Install the package in development mode
18
  RUN pip install -e .
19
 
 
14
  # Copy all application files (including setup.py)
15
  COPY . /app
16
 
17
+ # Creates a directory called "output" inside application directory, sets permissions so that the application can write files to this directory
18
+ RUN mkdir -p /app/output && chmod 777 /app/output
19
+
20
  # Install the package in development mode
21
  RUN pip install -e .
22