From e38d9ed53b64a111aa72e7b52c2dab74ec4f485a Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Fri, 31 Oct 2025 19:51:41 +0530 Subject: [PATCH] using busy box image instead of alpine for httpd server --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 124e8c8..655aa84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,8 @@ COPY . . # Build the app RUN npm run build -# Stage 2: Production image -FROM alpine:latest +# Stage 2: Static file server (BusyBox) +FROM busybox:latest WORKDIR /app