From 5a584c58fe8928ac3bd03332cb07c6594ef512f9 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 18 Sep 2025 23:40:59 +0200 Subject: [PATCH] Fix Dockerfile for podman too (#583) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ee2b305..ed35b52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ENV NODE_OPTIONS="--max-old-space-size=4096" RUN npm run build # Stage 2: Setup the Nginx Server to serve the app -FROM nginx:stable-alpine3.17 AS production +FROM docker.io/library/nginx:stable-alpine3.17 AS production COPY --from=build /app/dist /usr/share/nginx/html RUN echo 'server { listen 80; server_name _; root /usr/share/nginx/html; location / { try_files $uri /index.html; } }' > /etc/nginx/conf.d/default.conf EXPOSE 80 -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file +CMD ["nginx", "-g", "daemon off;"]