tornado-relayer/Dockerfile
2022-06-30 19:25:36 +10:00

28 lines
593 B
Docker

FROM node:16-alpine as dev
ENV NODE_ENV=development
WORKDIR /usr/app
COPY yarn.lock .
COPY package.json .
RUN apk update && apk add --no-cache g++ make python3 git openssh && rm -rf /var/cache/apk/*
RUN yarn install && yarn cache clean -f
COPY . ./
RUN yarn build
FROM node:16-alpine as prod
ENV NODE_ENV=production
WORKDIR /app
RUN apk update && apk add --no-cache g++ make python3 git openssh && rm -rf /var/cache/apk/*
COPY --from=dev /usr/app/build /app
COPY --from=dev /usr/app/package.json /app/
COPY --from=dev /usr/app/yarn.lock /app/
RUN yarn install && yarn cache clean -f