From bb7370db117c0522e088361888e6c13a312add67 Mon Sep 17 00:00:00 2001 From: xcaliber Date: Mon, 16 Feb 2026 01:33:08 +0000 Subject: [PATCH] Update Dockerfile.frontend --- Dockerfile.frontend | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Dockerfile.frontend b/Dockerfile.frontend index decb9eb..043db74 100644 --- a/Dockerfile.frontend +++ b/Dockerfile.frontend @@ -7,17 +7,6 @@ # Also used for the lite (unmanaged) deployment. # ========================================== -# Build stage -FROM alpine:3.19 AS builder - -WORKDIR /app -RUN apk add --no-cache bash coreutils - -COPY build.sh ./ -COPY src ./src - -RUN chmod +x build.sh && ./build.sh - # Production stage FROM nginx:alpine @@ -25,7 +14,7 @@ FROM nginx:alpine COPY nginx.frontend.conf /etc/nginx/conf.d/default.conf # Built SPA files -COPY --from=builder /app/standalone /usr/share/nginx/html +COPY src /app/standalone /usr/share/nginx/html EXPOSE 80