Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -14,7 +14,8 @@ WORKDIR /app
|
|
| 14 |
COPY . /app/
|
| 15 |
|
| 16 |
# Make Git trust the repo
|
| 17 |
-
RUN git config --global --add safe.directory /app
|
|
|
|
| 18 |
|
| 19 |
# Ensure database directory exists (adjust path if needed)
|
| 20 |
RUN mkdir -p /app/database && chmod -R 777 /app/database
|
|
|
|
| 14 |
COPY . /app/
|
| 15 |
|
| 16 |
# Make Git trust the repo
|
| 17 |
+
RUN git config --global --add safe.directory /app \
|
| 18 |
+
&& git config --global pull.rebase false
|
| 19 |
|
| 20 |
# Ensure database directory exists (adjust path if needed)
|
| 21 |
RUN mkdir -p /app/database && chmod -R 777 /app/database
|