mirror of
https://gitea.invidious.io/iv-org/documentation
synced 2025-06-05 22:19:26 +02:00
Setup CI to build the documentation to a Docker image (#208)
* Add Docker deployment * Remove the manually built version * Fix the dockerfile
This commit is contained in:
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
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/
|
Reference in New Issue
Block a user