# Build the docs FROM rust:slim as docs WORKDIR /app RUN cargo install mdbook \ --git https://github.com/Nutomic/mdBook.git \ --branch localization \ --rev 0982a82 COPY lemmy-docs ./lemmy-docs RUN mdbook build lemmy-docs -d ../docs # Build the asyncapi API docs FROM asyncapi/generator:1.8.0 as api WORKDIR /app COPY src/assets/scripts/asyncapi.yaml ./ RUN ag -o ./api ./asyncapi.yaml @asyncapi/html-template --force-write # Build the isomorphic app FROM node:14-alpine as builder RUN apk update && apk add yarn python3 build-base gcc wget git --no-cache WORKDIR /app # Cache deps COPY package.json yarn.lock ./ RUN yarn install --pure-lockfile # Build COPY tsconfig.json \ webpack.config.js \ .babelrc \ generate_translations.js \ ./ COPY joinlemmy-translations joinlemmy-translations COPY lemmy-translations lemmy-translations COPY src src # Copy the docs and API COPY --from=docs /app/docs ./src/assets/docs COPY --from=api /app/api ./src/assets/api RUN yarn RUN yarn build:prod FROM node:14-alpine as runner COPY --from=builder /app/dist /app/dist COPY --from=builder /app/node_modules /app/node_modules EXPOSE 1234 WORKDIR /app CMD node dist/js/server.js