Compare commits
2 commits
0b229a48c9
...
dbe8c14373
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dbe8c14373 | ||
![]() |
08ba0f0332 |
2 changed files with 18 additions and 2 deletions
7
.forgejo/workflows/build.yaml
Normal file
7
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- run: echo All Good
|
13
Dockerfile
13
Dockerfile
|
@ -1,3 +1,12 @@
|
||||||
FROM docker.io/squidfunk/mkdocs-material
|
FROM docker.io/squidfunk/mkdocs-material AS build
|
||||||
|
|
||||||
RUN pip install mkdocs-glightbox
|
#RUN pip install mkdocs-glightbox
|
||||||
|
|
||||||
|
COPY . /docs/
|
||||||
|
|
||||||
|
RUN mkdocs build
|
||||||
|
|
||||||
|
|
||||||
|
FROM nginx:latest
|
||||||
|
|
||||||
|
COPY --from=build /docs/site/ /usr/share/nginx/html/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue