From 99595e869d1d40a37941de963f1bf3f162ebd2d2 Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Fri, 16 Feb 2024 10:21:44 +0700 Subject: [PATCH] Update Dockerfile and manifest.yaml to expose port 32190 --- Dockerfile | 3 ++- manifest.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32ff3f3..fde6d96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,5 +9,6 @@ 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 32166 +# EXPOSE 32166 +EXPOSE 32190 CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/manifest.yaml b/manifest.yaml index b2af34f..c3c0249 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -6,5 +6,5 @@ services: context: . dockerfile: Dockerfile ports: - - "32166:80" + - "32190:80" restart: always \ No newline at end of file