mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-06 15:35:52 -05:00
17 lines
327 B
Docker
17 lines
327 B
Docker
FROM node:16-buster AS builder
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
COPY .env.build .env
|
|
|
|
RUN yarn install --frozen-lockfile
|
|
RUN yarn typecheck
|
|
RUN yarn build:highmem
|
|
RUN yarn workspaces focus --production --all
|
|
|
|
FROM node:16-alpine
|
|
WORKDIR /usr/src/app
|
|
COPY --from=builder /usr/src/app .
|
|
|
|
EXPOSE 5000
|
|
CMD [ "yarn", "start:inject" ]
|