mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-06 23:45:52 -05:00
19 lines
308 B
Text
19 lines
308 B
Text
|
FROM node:15-buster AS builder
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
COPY package*.json ./
|
||
|
|
||
|
RUN yarn --no-cache
|
||
|
|
||
|
COPY . .
|
||
|
COPY .env.build .env
|
||
|
RUN yarn typecheck
|
||
|
RUN yarn build
|
||
|
RUN npm prune --production
|
||
|
|
||
|
FROM node:15-buster
|
||
|
WORKDIR /usr/src/app
|
||
|
COPY --from=builder /usr/src/app .
|
||
|
|
||
|
EXPOSE 5000
|
||
|
CMD [ "yarn", "start:inject" ]
|