From e4482a1edb2fb56292d07ee8811a24f2a0d6b114 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Tue, 13 Dec 2022 10:55:05 +0000 Subject: [PATCH] Update base docker image and dependencies (#373) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 76cfa4d8f..f93c76fce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine as build +FROM node:lts as build WORKDIR /app @@ -6,13 +6,13 @@ COPY package.json . COPY yarn.lock . COPY prisma/schema.prisma . -RUN yarn --frozen-lockfile +RUN yarn --frozen-lockfile --no-cache --production COPY . . RUN yarn build -FROM node:alpine +FROM node:lts ENV PORT 3000 EXPOSE 3000