Skip to content

Commit

Permalink
fix: add argon2 bin
Browse files Browse the repository at this point in the history
  • Loading branch information
Fractal-Tess committed May 31, 2024
1 parent 4df0e60 commit a60c1ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:lts-alpine3.20 as base

FROM base AS builder

# RUN apk add --no-cache libc6-compat
# RUN apk update
# RUN apk add --no-cache libc6-compat

WORKDIR /app

Expand All @@ -17,6 +17,9 @@ RUN npm run build
FROM base AS runner
WORKDIR /app

RUN apk update
RUN apk add argon2

COPY --from=builder /app/public ./public

RUN addgroup --system --gid 1001 nodejs
Expand Down

0 comments on commit a60c1ba

Please sign in to comment.