Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -17,6 +17,9 @@ COPY --from=web /app/web /app/web
|
|
| 17 |
|
| 18 |
# Copy config files
|
| 19 |
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
|
|
| 20 |
COPY start.sh /app/start.sh
|
| 21 |
|
| 22 |
RUN chmod +x /app/start.sh && \
|
|
|
|
| 17 |
|
| 18 |
# Copy config files
|
| 19 |
COPY nginx.conf /etc/nginx/nginx.conf
|
| 20 |
+
|
| 21 |
+
# Force Cache Busting (Ensure start.sh is re-copied)
|
| 22 |
+
ARG FORCE_REBUILD=1
|
| 23 |
COPY start.sh /app/start.sh
|
| 24 |
|
| 25 |
RUN chmod +x /app/start.sh && \
|