mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00:00
a155b70280
* Add Docker deployment * Remove the manually built version * Fix the dockerfile
7 lines
179 B
Docker
7 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/
|