From b2736d72bd13428b0ee3eed52211dc7c5ce7145e Mon Sep 17 00:00:00 2001 From: CerealBoy Date: Fri, 23 Aug 2024 22:00:06 +1000 Subject: [PATCH] Fix the image build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4add9b..4fd654d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM node:slim AS fe +FROM node:21-slim AS fe WORKDIR /app COPY . . -RUN yarn && NODE_OPTIONS=--openssl-legacy-provider yarn build +RUN yarn && yarn build FROM golang:alpine AS be