From 8b0b6a411a9f39b4deff5d5822a087017ada029d Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:44:03 +0100 Subject: [PATCH] fix: install openssl --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5bfe548..6f958f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,6 +31,7 @@ COPY --from=builder /app/.next ./.next COPY --from=builder /app/prisma ./prisma # Install production dependencies only +RUN apk add --no-cache openssl RUN yarn install --frozen-lockfile --production && \ yarn cache clean