From e044a54714b650baa5a73f6152474d801bb00f88 Mon Sep 17 00:00:00 2001 From: Riccardo Senica Date: Sun, 1 Feb 2026 13:44:15 +0100 Subject: [PATCH] fix: add openssl to dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ed4f8c9..dc1de71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ RUN npm run build FROM node:20-alpine +RUN apk add --no-cache openssl + WORKDIR /app ENV NODE_ENV=production