From 255420eaccee42ec926346832f5c722a066afd03 Mon Sep 17 00:00:00 2001 From: mgtennant <100305096+mgtennant@users.noreply.github.com> Date: Tue, 30 Jul 2024 10:39:52 -0700 Subject: [PATCH] remove prisma generate, node 20->18 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a25f62f..1d3db13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/node:20-alpine +FROM docker.io/node:18-alpine # Set environment variable to avoid update notifications ENV NO_UPDATE_NOTIFIER=true @@ -24,7 +24,6 @@ USER 1001:1001 # Install dependencies and build the application RUN npm run all:ci \ && npm run all:build \ - && npx prisma generate \ && npm run client:purge # Expose the port the app runs on