documentation/Dockerfile
TheFrenchGhosty a155b70280
Setup CI to build the documentation to a Docker image (#208)
* Add Docker deployment

* Remove the manually built version

* Fix the dockerfile
2022-03-12 23:09:51 +01:00

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/