Compare commits

...

2 commits

Author SHA1 Message Date
Chris Cowley
dbe8c14373 enable actions 2024-10-03 16:07:58 +02:00
Chris Cowley
08ba0f0332 Create multistage Dockerfile 2024-10-03 16:07:44 +02:00
2 changed files with 18 additions and 2 deletions
.forgejo/workflows
Dockerfile

View file

@ -0,0 +1,7 @@
on:
- push
jobs:
build:
runs-on: docker
steps:
- run: echo All Good

View file

@ -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/