Pommsn commited on
Commit
5ad166a
·
verified ·
1 Parent(s): 16781b9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 && \