Code of the https://kraut.world/ server. Map at https://github.com/HackspaceJena/krautspace-rc3-map - Fork from https://github.com/thecodingmachine/workadventure
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
927 B
27 lines
927 B
# protobuf build |
|
FROM node:14.18.2-buster-slim@sha256:20bedf0c09de887379e59a41c04284974f5fb529cf0e13aab613473ce298da3d as builder |
|
WORKDIR /usr/src |
|
COPY messages . |
|
RUN yarn install && yarn proto |
|
|
|
# typescript build |
|
FROM node:14.18.2-buster-slim@sha256:20bedf0c09de887379e59a41c04284974f5fb529cf0e13aab613473ce298da3d as builder2 |
|
WORKDIR /usr/src |
|
COPY pusher/yarn.lock pusher/package.json ./ |
|
RUN yarn install |
|
COPY pusher . |
|
COPY --from=builder /usr/src/generated src/Messages/generated |
|
COPY --from=builder /usr/src/JsonMessages src/Messages/JsonMessages |
|
ENV NODE_ENV=production |
|
RUN yarn run tsc |
|
|
|
# final production image |
|
FROM node:14.18.2-buster-slim@sha256:20bedf0c09de887379e59a41c04284974f5fb529cf0e13aab613473ce298da3d |
|
WORKDIR /usr/src |
|
COPY pusher/yarn.lock pusher/package.json ./ |
|
COPY --from=builder2 /usr/src/dist /usr/src/dist |
|
ENV NODE_ENV=production |
|
RUN yarn install --production |
|
|
|
USER node |
|
CMD ["yarn", "run", "runprod"]
|
|
|