mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 11:51:17 +00:00
62 lines
1.5 KiB
Docker
62 lines
1.5 KiB
Docker
# Build the git includes for the docs
|
|
FROM alpine:3 as docs_include
|
|
RUN apk add --no-cache git bash curl
|
|
WORKDIR /app
|
|
COPY lemmy-docs ./lemmy-docs
|
|
WORKDIR /app/lemmy-docs
|
|
RUN ./update-includes.sh
|
|
|
|
# Build the docs
|
|
FROM rust:1.63-slim as docs
|
|
WORKDIR /app
|
|
RUN cargo install mdbook \
|
|
--git https://github.com/Ruin0x11/mdBook.git \
|
|
--branch localization \
|
|
--rev 9d8147c
|
|
COPY lemmy-docs ./lemmy-docs
|
|
COPY --from=docs_include /app/lemmy-docs/include /app/lemmy-docs/include
|
|
RUN mdbook build lemmy-docs -d ../docs
|
|
|
|
# Build the typedoc API docs
|
|
FROM node:14-alpine as api
|
|
WORKDIR /app
|
|
COPY lemmy-js-client lemmy-js-client
|
|
WORKDIR /app/lemmy-js-client
|
|
RUN yarn
|
|
RUN yarn docs
|
|
|
|
# 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.mjs \
|
|
./
|
|
|
|
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/lemmy-js-client/docs ./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
|