From 09a40fdaf76d8a4b02dbaade3f0a123ebec185d8 Mon Sep 17 00:00:00 2001 From: Alec Ananian <1013230+alecananian@users.noreply.github.com> Date: Sun, 15 Dec 2024 14:06:36 -0800 Subject: [PATCH] api: update dockerfile to install openssl --- apps/api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index e1123cda..fffeb41b 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -8,7 +8,7 @@ ENV NODE_ENV="production" # Install packages needed to build node modules RUN apk update && \ - apk add --no-cache build-base pkgconfig python3 py3-pip + apk add --no-cache build-base openssl pkgconfig python3 py3-pip # Copy application code COPY . .