This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
docs/Dockerfile

13 lines
230 B
Docker

FROM docker.io/library/nginx:alpine
RUN apk add git mkdocs py3-pathspec
RUN mkdir -p /opt/little-lines-docs
COPY . /opt/little-lines-docs
WORKDIR /opt/little-lines-docs
RUN mkdocs build
RUN cp -r site/* /usr/share/nginx/html