From c33ef02f36a79c31ced7fd39752f412da43bf457 Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 24 Sep 2025 14:17:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=8B=20Remove=20env=20variable=20from?= =?UTF-8?q?=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eaadd44..1160e6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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