From 47c355ae8a1b3cadaecc966023fb55f64e617ae7 Mon Sep 17 00:00:00 2001 From: Valentin Zickner Date: Sat, 20 Nov 2021 21:47:49 +0100 Subject: [PATCH] install openssl while doing docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3961bbe84..075b43396 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY ./package.json package.json COPY ./yarn.lock yarn.lock COPY ./prisma/schema.prisma prisma/schema.prisma -RUN apk add --no-cache python3 g++ make +RUN apk add --no-cache python3 g++ make openssl RUN yarn install # See https://github.com/nrwl/nx/issues/6586 for further details