mirror of
https://github.com/iv-org/documentation.git
synced 2025-02-08 11:25:47 -05:00
8 lines
179 B
Docker
8 lines
179 B
Docker
FROM squidfunk/mkdocs-material:latest as build
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN mkdocs build
|
|
|
|
FROM docker.io/library/nginx:alpine
|
|
COPY --from=build /build/site/ /usr/share/nginx/html/
|