From 71f5cd2ca13b34b06cb42f1665b788ce4a092b1a Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Mon, 8 Aug 2022 14:33:59 +0100 Subject: [PATCH] fix(deploy): try using slim rather than alpine --- Dockerfile | 4 ++-- prisma/schema.prisma | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79ca096..bbf9068 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM node:18-alpine +FROM node:18-slim -RUN apk add openssl +RUN apt-get update && apt-get install -y openssl RUN yarn global add pnpm diff --git a/prisma/schema.prisma b/prisma/schema.prisma index e21bef0..f994dc8 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -3,7 +3,7 @@ generator client { provider = "prisma-client-js" - binaryTargets = ["native", "linux-musl"] + binaryTargets = ["native"] } datasource db {