This commit is contained in:
Nomi Nonsense (Nonszy) 2025-11-22 10:14:41 +07:00
parent 6d9e5ae56f
commit 76e2455889

View File

@ -1,6 +1,6 @@
FROM node:20-alpine AS builder
RUN apk add --no-cache yarn curl
RUN apk add --no-cache yarn
WORKDIR /app
@ -15,6 +15,8 @@ RUN yarn build
FROM node:20-alpine AS runner
RUN apk add --no-cache curl
WORKDIR /app
RUN addgroup --system --gid 1001 nodejs