From 67c5b52dee6a2b22cc6bd33ca6b8eefe3871a273 Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Sat, 13 Jan 2024 21:21:34 +0700 Subject: [PATCH] Update Dockerfile to expose port 15001 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6fcc094..9325b2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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;"]