From fcee8156f24ece9c7b4b3040ad4040266cc6c3c5 Mon Sep 17 00:00:00 2001 From: rjsdn0 <144145159+rjsdn0@users.noreply.github.com> Date: Wed, 15 Jan 2025 22:51:44 +0900 Subject: [PATCH] fix: install openssl manually --- .docker/api.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.docker/api.Dockerfile b/.docker/api.Dockerfile index e29c72a2..52819c17 100644 --- a/.docker/api.Dockerfile +++ b/.docker/api.Dockerfile @@ -26,6 +26,8 @@ RUN pnpm --filter @biseo/api... build EXPOSE 8000 +RUN apk add --no-cache openssl + CMD ["pnpm", "--filter", "@biseo/api", "prod"]