Update Dockerfile

This commit is contained in:
Abron Studio
2025-05-17 16:01:51 +03:30
committed by GitHub
parent 4aeec1de0e
commit 7a04f5b7b0

View File

@@ -1,8 +1,8 @@
FROM node:16-buster AS builder
ENV NODE_OPTIONS="--max_old_space_size=16384"
WORKDIR /usr/src/app
COPY ./revolt-revite .
COPY ./revolt-revite/.env.build ./revolt-revite/.env
COPY . .
COPY .env.build ./.env
RUN yarn install --frozen-lockfile
RUN yarn build:deps