From 9f419e11fe582661b21ac4a21fe03342ce460943 Mon Sep 17 00:00:00 2001 From: Parth Tiwari Date: Fri, 28 Mar 2025 23:34:58 +0530 Subject: [PATCH] fix: fixed dockerfile for the bug ->Prisma failed to detect the libssl/openssl version to use --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index abf84b32..d2b45503 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ COPY . . RUN yarn install +RUN ln -s /usr/lib/libssl.so.3 /lib/libssl.so.3 + EXPOSE 3000 CMD ["yarn", "run", "dev:docker"]