Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -11,6 +11,10 @@ WORKDIR /app
|
|
| 11 |
RUN mkdir -p /app/cache && \
|
| 12 |
chmod -R 777 /app/cache
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
COPY requirements.txt /app/requirements.txt
|
| 15 |
|
| 16 |
# Install dependencies
|
|
|
|
| 11 |
RUN mkdir -p /app/cache && \
|
| 12 |
chmod -R 777 /app/cache
|
| 13 |
|
| 14 |
+
# Create the offload directory and set appropriate permissions
|
| 15 |
+
RUN mkdir -p /app/offload && \
|
| 16 |
+
chmod -R 777 /app/offload
|
| 17 |
+
|
| 18 |
COPY requirements.txt /app/requirements.txt
|
| 19 |
|
| 20 |
# Install dependencies
|