fix dockerfile

This commit is contained in:
The Foxon 2023-07-01 01:35:11 +12:00
parent 44999b70a0
commit 0a77e00a52

View File

@ -1,11 +1,11 @@
FROM node:19-alpine AS stage0 FROM node:16-alpine AS stage0
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN yarn install && yarn build && rm -rf node_modules RUN yarn install && yarn build && rm -rf node_modules
FROM node:19-alpine FROM node:16-alpine
ENV STORAGE=/app/storage ENV STORAGE=/app/storage