wiki/Dockerfile

15 lines
401 B
Docker

# Build
FROM alpine:latest AS build
LABEL authors="gnousEU"
WORKDIR /build
COPY . .
RUN apk add wget gzip tar && \
wget -O mdbook.tar.gz https://github.com/rust-lang/mdBook/releases/download/v0.4.37/mdbook-v0.4.37-x86_64-unknown-linux-musl.tar.gz && \
tar xvf mdbook.tar.gz && \
./mdbook build
FROM ghcr.io/static-web-server/static-web-server:2.30
COPY --from=build /build/book /public