From cd86a7ad423c68d737813b64a7a3557585138e21 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Sat, 11 Jan 2025 03:58:42 +0500 Subject: [PATCH] installing openssl --- .build/prod/bun.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.build/prod/bun.Dockerfile b/.build/prod/bun.Dockerfile index a6279fd..8536dd8 100644 --- a/.build/prod/bun.Dockerfile +++ b/.build/prod/bun.Dockerfile @@ -10,6 +10,8 @@ RUN npm run build FROM node:20-slim WORKDIR /var/www/html +RUN apt update && apt install openssl -y + COPY --from=builder /var/www/html/package.json ./ COPY --from=builder /var/www/html/node_modules ./node_modules COPY --from=builder /var/www/html/.next ./.next