1
0
mirror of https://github.com/iv-org/documentation.git synced 2025-01-11 23:29:30 -05:00
documentation/Dockerfile

8 lines
179 B
Docker
Raw Normal View History

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/