diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24b49b18..0e5b60ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: type=sha,format=long # Build and push - name: Build and push - uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6 + uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/Dockerfile b/Dockerfile index 801bac86..06fc79b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base stage with pnpm setup -FROM node:23.11.0-slim AS base +FROM node:23.11.1-slim AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable @@ -20,7 +20,7 @@ COPY . . RUN pnpm run build # Final stage - combine production dependencies and build output -FROM node:23.11.0-alpine AS runner +FROM node:23.11.1-alpine AS runner WORKDIR /app COPY --from=prod-deps --chown=node:node /app/node_modules ./node_modules COPY --from=build --chown=node:node /app/dist ./dist