fix(docker): install curl for healthcheck

This commit is contained in:
Isaac 2023-06-16 23:31:19 +01:00
parent 516c45f9ab
commit 11ec0ff7e6
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33

View File

@ -14,7 +14,8 @@ RUN CI=true pnpm install --prod --frozen-lockfile
COPY --link . . COPY --link . .
FROM node:18-alpine AS runner FROM node:18-alpine AS runner
RUN adduser --disabled-password --home /home/container container RUN apk --no-cache add curl \
adduser --disabled-password --home /home/container container
USER container USER container
ENV USER=container \ ENV USER=container \
HOME=/home/container \ HOME=/home/container \