From 35e7fbcd23134f33c0fe25a239f436efa577eda8 Mon Sep 17 00:00:00 2001 From: mplorentz Date: Thu, 5 Mar 2026 16:52:53 -0500 Subject: [PATCH] Revert changes to dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ecab84e..efeb724a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,7 @@ FROM node:20-bookworm AS builder -RUN apt-get update && apt-get install -y --no-install-recommends curl \ - && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends curl RUN npm install -g pnpm@latest @@ -31,5 +30,4 @@ WORKDIR /app # Copy only the built output - no source, no .env, no dev deps COPY --from=builder /app/build ./build -# Serve in SPA mode -CMD ["npx", "serve", "-s", "build"] +CMD ["npx", "serve", "build"]