mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00: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:
parent
a1902ff41d
commit
a155b70280
66 changed files with 42 additions and 26584 deletions
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/
|
Loading…
Add table
Add a link
Reference in a new issue