a155b70280
* Add Docker deployment * Remove the manually built version * Fix the dockerfile
8 linhas
179 B
Docker
8 linhas
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/
|