Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
|