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

14 lines
278 B
Docker

FROM docker.io/library/nginx:alpine
RUN apk add mkdocs py3-pathspec
RUN mkdir -p /opt/quadlet-examples.techtransthai.org
COPY . /opt/quadlet-examples.techtransthai.org
WORKDIR /opt/quadlet-examples.techtransthai.org
RUN mkdocs build
RUN cp -r site/* /usr/share/nginx/html