mirror of
https://github.com/iv-org/documentation.git
synced 2024-10-01 01:35:51 -04: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/
|