mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-06 15:35:52 -05:00
19 lines
No EOL
308 B
Docker
19 lines
No EOL
308 B
Docker
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" ] |