ci: publish additional build artifact for debian systems (#4679)

This commit is contained in:
Meier Lukas
2025-12-17 20:28:27 +01:00
committed by GitHub
parent ac6fed9946
commit 266aefd980
6 changed files with 424 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
FROM node:24.11.1-trixie AS base
WORKDIR /app
COPY package.json .
COPY pnpm-lock.yaml .
RUN corepack enable pnpm && pnpm install --frozen-lockfile
CMD ["sleep", "60s"]