Spaces:
Running
Running
Set permissions for the /app directory in Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -8,6 +8,7 @@ COPY . .
|
|
8 |
WORKDIR /app
|
9 |
|
10 |
# Create a cache directory and set permissions
|
|
|
11 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
12 |
RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
|
13 |
|
|
|
8 |
WORKDIR /app
|
9 |
|
10 |
# Create a cache directory and set permissions
|
11 |
+
RUN chmod -R 777 /app
|
12 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
13 |
RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
|
14 |
|