diff --git a/Dockerfile b/Dockerfile index a5d89f0..79be537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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