Spaces:
Sleeping
Sleeping
Peter Yang
commited on
Commit
·
e11b0ef
1
Parent(s):
31a570f
resovling writting permission issue
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -4,6 +4,9 @@ FROM python:3.10
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
|
|
7 |
# Install system dependencies
|
8 |
RUN apt-get update \
|
9 |
&& apt-get install -y --no-install-recommends \
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Change permissions to allow all users to write to the /app directory
|
8 |
+
RUN chmod 777 /app
|
9 |
+
|
10 |
# Install system dependencies
|
11 |
RUN apt-get update \
|
12 |
&& apt-get install -y --no-install-recommends \
|