diff --git a/Dockerfile b/Dockerfile index e256e45..e3bb463 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM node:24-alpine AS build RUN corepack enable && corepack prepare pnpm@latest --activate +ENV ASTRO_TELEMETRY_DISABLED=1 + WORKDIR /app # Copy depedencies diff --git a/Jenkinsfile b/Jenkinsfile index 247cc40..a80d6de 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,8 @@ pipeline { CONTAINER_NAME = "portfolio" DOCKER_NETWORK = "reverse-proxy" DOCKER_HOST = "unix:///var/run/docker.sock" + // Optimization + PNPM_CACHE = "/var/jenkins_home/pnpm-cache" } stages { stage('Checkout') { diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 96c2fce..e63f14a 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -3,7 +3,7 @@ const today = new Date(); ---