diff --git a/Dockerfile b/Dockerfile index 3ebedca..8569669 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Install dependencies first to leverage Docker cache COPY package*.json ./ -RUN npm ci --no-audit --no-fund --production && \ +RUN npm ci --no-audit --no-fund --omit=dev && \ npm cache clean --force # Copy source code and build diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 29c981e..2627b4b 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -15,14 +15,22 @@ const t = useTranslations(lang) ---