Update Dockerfile to copy from /dist instead of /build

This commit is contained in:
rpurnama1409 2024-03-04 20:23:07 +07:00
parent 55187b01e7
commit 5059614c9e

View File

@ -12,7 +12,7 @@
# CMD ["nginx", "-g", "daemon off;"]
FROM nginx:stable-alpine
COPY /build /usr/share/nginx/html
COPY /dist /usr/share/nginx/html
COPY /nginx.conf /etc/nginx/nginx.conf
EXPOSE 32166
CMD ["nginx", "-g", "daemon off;"]