From 5059614c9e8108b4c53cd72387c4fd3b824bbf20 Mon Sep 17 00:00:00 2001 From: rpurnama1409 Date: Mon, 4 Mar 2024 20:23:07 +0700 Subject: [PATCH] Update Dockerfile to copy from /dist instead of /build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e6a78e..91fd656 100755 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # CMD ["nginx", "-g", "daemon off;"] FROM nginx:stable-alpine -COPY /build /usr/share/nginx/html +COPY /dist /usr/share/nginx/html COPY /nginx.conf /etc/nginx/nginx.conf EXPOSE 32166 CMD ["nginx", "-g", "daemon off;"]