soiz1 commited on
Commit
04cc1a8
·
verified ·
1 Parent(s): 27d1344

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -24,12 +24,11 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm \
24
  COPY . .
25
  RUN chmod +x localizefonts.sh
26
  #RUN ./localizefonts.sh
27
-
28
  FROM nginxinc/nginx-unprivileged:alpine
29
 
30
  COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
31
  COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
32
 
33
  COPY --from=build ./entrypoint.sh /entrypoint.sh
34
-
35
  ENTRYPOINT [ "/entrypoint.sh" ]
 
24
  COPY . .
25
  RUN chmod +x localizefonts.sh
26
  #RUN ./localizefonts.sh
 
27
  FROM nginxinc/nginx-unprivileged:alpine
28
 
29
  COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
30
  COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
31
 
32
  COPY --from=build ./entrypoint.sh /entrypoint.sh
33
+ RUN chmod +x entrypoint.sh
34
  ENTRYPOINT [ "/entrypoint.sh" ]