chore(deps): pin versions and setup dependabot for Dockerfile (#21)

This commit is contained in:
2025-10-17 13:17:28 +02:00
committed by GitHub
parent 5331d06702
commit ae19a5ed99
3 changed files with 11 additions and 4 deletions

View File

@@ -1,8 +1,9 @@
FROM node:alpine AS build
FROM node:22.11.0-alpine3.20 AS build
WORKDIR /app
RUN npm install -g --force corepack && corepack enable && corepack prepare pnpm@latest --activate
RUN npm install -g --force corepack \
&& corepack enable
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile