Update Dockerfile and manifest.yaml to expose port 32190

This commit is contained in:
Dede Fuji Abdul 2024-02-16 10:21:44 +07:00
parent 18b29e7e46
commit 99595e869d
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -6,5 +6,5 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
ports: ports:
- "32166:80" - "32190:80"
restart: always restart: always