From 7c420ba7d7997227ea281b7fcb421b42a6b29d57 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Mon, 31 Mar 2025 12:24:50 +1100 Subject: [PATCH] fix: revert previous and add yarn clean/configs --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2766c7d..0d0805d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull pre-configured and updated build environment -FROM debian:testing-20250317 AS build-system +FROM debian:testing-20250317-slim AS build-system # setup workdir RUN mkdir /build @@ -10,6 +10,10 @@ RUN apt-get update -y RUN apt-get install node-corepack -y RUN corepack enable COPY . . +RUN yarn cache clean +RUN yarn config delete proxy +RUN yarn config delete https-proxy +RUN yarn config delete registry RUN NUXT_TELEMETRY_DISABLED=1 yarn install RUN NUXT_TELEMETRY_DISABLED=1 yarn build