Browse Source

dockerFile: edit 1

Yi 1 năm trước cách đây
mục cha
commit
e3a9ad2d6a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -13,7 +13,7 @@ RUN npm run build:prod
 FROM nginx:alpine
 
 COPY --from=builder /app/tmr-group-admin/dist/ /usr/share/nginx/html/
-COPY --from=builder /app/tmr-admin/default.conf.template /etc/nginx/conf.d/default.conf
+COPY --from=builder /app/tmr-group-admin/default.conf.template /etc/nginx/conf.d/default.conf
 EXPOSE 80
 
 CMD ["/bin/sh", "-c", "sed -i \"s@<html@<html domain=\"$DOMAIN\"@\" /usr/share/nginx/html/index.html; nginx -g \"daemon off;\""]