1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

chore: dependency updates

This commit is contained in:
Bastien Wirtz 2025-02-22 16:07:40 +01:00
parent 986954953b
commit 1cc724c800
4 changed files with 841 additions and 1168 deletions

View file

@ -1,10 +1,10 @@
# build stage
FROM --platform=$BUILDPLATFORM node:22-alpine3.20 AS build-stage
FROM --platform=$BUILDPLATFORM node:22-alpine3.21 AS build-stage
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable && corepack use pnpm@9
RUN corepack enable && corepack use pnpm@10
WORKDIR /app
@ -15,7 +15,7 @@ COPY . .
RUN pnpm build
# production stage
FROM alpine:3.20
FROM alpine:3.21
ENV GID=1000 \
UID=1000 \