2022-06-28 16:13:00 +02:00
|
|
|
ARG NODE_VERSION=16-alpine
|
|
|
|
|
2022-08-30 14:39:28 +02:00
|
|
|
FROM --platform=$BUILDPLATFORM node:$NODE_VERSION as frontend_builder
|
|
|
|
|
2022-11-03 15:02:20 +01:00
|
|
|
WORKDIR /unleash/frontend
|
2022-08-30 14:39:28 +02:00
|
|
|
|
2022-11-03 15:02:20 +01:00
|
|
|
COPY . /unleash
|
2022-08-30 14:39:28 +02:00
|
|
|
|
|
|
|
RUN yarn install --frozen-lockfile
|
|
|
|
|
|
|
|
FROM node:$NODE_VERSION as builder
|
2022-06-28 16:13:00 +02:00
|
|
|
|
|
|
|
WORKDIR /unleash
|
|
|
|
|
|
|
|
COPY . /unleash
|
|
|
|
|
2022-08-29 15:00:04 +02:00
|
|
|
RUN yarn config set network-timeout 300000
|
|
|
|
|
2022-08-30 14:39:28 +02:00
|
|
|
RUN yarn install --frozen-lockfile --ignore-scripts && yarn run build && yarn run local:package
|
|
|
|
|
2022-11-03 15:02:20 +01:00
|
|
|
COPY --from=frontend_builder /unleash/frontend/build /unleash/build/frontend/build
|
2022-06-28 16:13:00 +02:00
|
|
|
|
|
|
|
WORKDIR /unleash/docker
|
|
|
|
|
|
|
|
RUN yarn install --frozen-lockfile --production=true
|
|
|
|
|
|
|
|
FROM node:$NODE_VERSION
|
|
|
|
|
|
|
|
ENV NODE_ENV production
|
|
|
|
|
|
|
|
WORKDIR /unleash
|
|
|
|
|
|
|
|
COPY --from=builder /unleash/docker /unleash
|
|
|
|
|
|
|
|
RUN rm -rf /usr/local/lib/node_modules/npm/
|
|
|
|
|
|
|
|
EXPOSE 4242
|
|
|
|
|
|
|
|
USER node
|
|
|
|
|
|
|
|
CMD ["node", "index.js"]
|