Update Dockerfile to expose port 15001

This commit is contained in:
Dede Fuji Abdul 2024-01-13 21:21:34 +07:00
parent bc77acc42d
commit 67c5b52dee

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 15000
EXPOSE 15001
CMD ["nginx", "-g", "daemon off;"]