From fcfe012a02021a78ded9b3b462448c6fca3e1e2f Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Thu, 18 Jan 2024 11:17:20 +0700 Subject: [PATCH] Update Dockerfile to fix missing newline at end of file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2935857..32ff3f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ 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 -CMD ["nginx", "-g", "daemon off;"] +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file