From c00902f403a10cda47562b7244bf5a1dbfd924a6 Mon Sep 17 00:00:00 2001 From: JohannesBOT Date: Fri, 29 May 2026 19:45:31 +0200 Subject: [PATCH] test --- Dockerfile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index 920bda4..f5e6269 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,19 +14,3 @@ RUN npm install COPY . . RUN npm run build - -# ---- Runtime stage --------------------------------------------------- -FROM nginx:1.27-alpine AS runtime - -# openssl is needed to generate the self-signed certificate on first start. -RUN apk add --no-cache openssl - -COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY docker/40-self-signed-ssl.sh /docker-entrypoint.d/40-self-signed-ssl.sh -RUN chmod +x /docker-entrypoint.d/40-self-signed-ssl.sh - -COPY --from=build /app/dist /usr/share/nginx/html - -EXPOSE 443 - -# The base nginx image entrypoint runs every script in /docker-entrypoint.d.