From 0a77e00a52500fc92df619647d610782b979ed68 Mon Sep 17 00:00:00 2001 From: The-Foxon Date: Sat, 1 Jul 2023 01:35:11 +1200 Subject: [PATCH] fix dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1775097..07d1f24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM node:19-alpine AS stage0 +FROM node:16-alpine AS stage0 WORKDIR /app COPY . . RUN yarn install && yarn build && rm -rf node_modules -FROM node:19-alpine +FROM node:16-alpine ENV STORAGE=/app/storage