add gitlab ci

This commit is contained in:
ducoterra
2020-10-28 10:14:36 -04:00
parent 68bcbdf7fd
commit c3402af3f0
14 changed files with 254 additions and 2 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.9.0 as BUILD
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY mkdocs.yml .
COPY docs docs
RUN mkdocs build
FROM nginx:latest
COPY --from=BUILD /site/ /usr/share/nginx/html/