From 62a23fb1b7a4b436041424b98fc4b10a2991f9eb Mon Sep 17 00:00:00 2001 From: Aaron Claydon Date: Mon, 16 Dec 2024 15:42:02 +0000 Subject: [PATCH] fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fac6414..03f9b30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN mkdir -p /var/www/html COPY nginx_config/nginx.conf /etc/nginx/nginx.conf COPY nginx_config/default.conf /etc/nginx/conf.d/default.conf -COPY --from=builder /tmp/nginx/vue-single-page-app/dist/* /var/www/html/ +COPY --from=builder /tmp/nginx/vue-single-page-app/dist/ /var/www/html/ RUN chown nginx:nginx /var/www/html