1
0
mirror of https://gitea.invidious.io/iv-org/documentation synced 2025-04-17 14:57:21 +02:00
documentation/Dockerfile
TheFrenchGhosty a155b70280
Setup CI to build the documentation to a Docker image ()
* 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/