🐋 Remove env variable from Dockerfile

This commit is contained in:
pheralb
2025-09-24 14:17:01 +01:00
parent 559eb676d9
commit c33ef02f36
-2
View File
@@ -15,7 +15,6 @@ RUN pnpm install --frozen-lockfile
FROM base AS builder
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV PUBLIC_SVGL_VERSION=beta
RUN pnpm run check:size
RUN pnpm run build:prod
@@ -30,7 +29,6 @@ COPY package.json ./
# Set production environment
ENV NODE_ENV=production
ENV PUBLIC_SVGL_VERSION=beta
# Expose port
EXPOSE 3000