Spaces:
Running
Running
Commit
·
4bb8b78
1
Parent(s):
fba7988
Set permissions for /app directory in Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -17,6 +17,7 @@ ENV HF_HOME="/tmp/poetica-cache"
|
|
| 17 |
# Install Python dependencies
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
RUN mkdir -m 777 /tmp/poetica-cache
|
|
|
|
| 20 |
|
| 21 |
# Copy the application code
|
| 22 |
COPY . .
|
|
|
|
| 17 |
# Install Python dependencies
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
RUN mkdir -m 777 /tmp/poetica-cache
|
| 20 |
+
RUN chmod 777 /app
|
| 21 |
|
| 22 |
# Copy the application code
|
| 23 |
COPY . .
|