Spaces:
Runtime error
Runtime error
Commit
·
f5d414f
1
Parent(s):
302ee5a
update Dockerfile to create .files directory instead of files
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
|
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Create the /app/files directory and set full permissions
|
14 |
-
RUN mkdir -p /app
|
15 |
|
16 |
# Copy the current repository into the container
|
17 |
COPY . /app
|
|
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Create the /app/files directory and set full permissions
|
14 |
+
RUN mkdir -p /app/.files && chmod 777 /app/.files
|
15 |
|
16 |
# Copy the current repository into the container
|
17 |
COPY . /app
|