Update Dockerfile to expose port 8000

This commit is contained in:
Dede Fuji Abdul 2024-01-13 12:54:16 +07:00
parent 04c9700fac
commit d2f6ca0ad3

View File

@ -9,5 +9,5 @@ RUN npm run build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf
EXPOSE 32167
EXPOSE 8000
CMD ["nginx", "-g", "daemon off;"]