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
265 B
Docker
Raw Normal View History

2024-06-21 09:17:07 +00:00
FROM docker.io/library/nginx:alpine
RUN apk add mkdocs
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