Spaces:
Runtime error
Runtime error
update dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -7,8 +7,11 @@ WORKDIR /app
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
-
#
|
11 |
-
RUN
|
|
|
|
|
|
|
12 |
|
13 |
# Create the flask_session directory and set the appropriate permissions
|
14 |
RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session
|
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
+
# Create .kaggle directory and set permissions
|
11 |
+
RUN mkdir -p /.kaggle && chmod -R 777 /.kaggle
|
12 |
+
|
13 |
+
# Create .cache directory and set permissions
|
14 |
+
RUN mkdir -p /.cache && chmod -R 777 /.cache
|
15 |
|
16 |
# Create the flask_session directory and set the appropriate permissions
|
17 |
RUN mkdir -p /app/flask_session && chmod 777 /app/flask_session
|