Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -4,6 +4,9 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY . /app
|
6 |
|
|
|
|
|
|
|
7 |
# Install build tools and dependencies
|
8 |
RUN apt-get update && \
|
9 |
apt-get install -y gcc && \
|
|
|
4 |
|
5 |
COPY . /app
|
6 |
|
7 |
+
# Ensure /app is writable for session files
|
8 |
+
RUN chmod -R 777 /app
|
9 |
+
|
10 |
# Install build tools and dependencies
|
11 |
RUN apt-get update && \
|
12 |
apt-get install -y gcc && \
|