workadventure/back/Dockerfile

27 lines
849 B
Docker
Raw Normal View History

# protobuf build
FROM node:14.15.4-buster-slim@sha256:cbae886186467bbfd274b82a234a1cdfbbd31201c2a6ee63a6893eefcf3c6e76 as builder
WORKDIR /usr/src
COPY messages .
RUN yarn install && yarn proto
# typescript build
FROM node:14.15.4-buster-slim@sha256:cbae886186467bbfd274b82a234a1cdfbbd31201c2a6ee63a6893eefcf3c6e76 as builder2
WORKDIR /usr/src
COPY back/yarn.lock back/package.json ./
2020-04-09 11:00:30 +02:00
RUN yarn install
COPY back .
COPY --from=builder /usr/src/generated src/Messages/generated
2020-04-09 11:00:30 +02:00
ENV NODE_ENV=production
2020-12-09 16:33:59 +01:00
RUN yarn run tsc
2020-04-09 11:00:30 +02:00
# final production image
FROM node:14.15.4-buster-slim@sha256:cbae886186467bbfd274b82a234a1cdfbbd31201c2a6ee63a6893eefcf3c6e76
WORKDIR /usr/src
COPY back/yarn.lock back/package.json ./
COPY --from=builder2 /usr/src/dist /usr/src/dist
ENV NODE_ENV=production
RUN yarn install --production
2020-04-12 15:50:14 +02:00
USER node
CMD ["yarn", "run", "runprod"]