| 12345678910111213141516171819202122232425262728293031323334 | FROM docker.io/alpine:3.17.1 as borgmaticCOPY . /appRUN apk add --no-cache py3-pip py3-ruamel.yaml py3-ruamel.yaml.clibRUN pip install --no-cache /app && generate-borgmatic-config && chmod +r /etc/borgmatic/config.yamlRUN borgmatic --help > /command-line.txt \    && for action in rcreate transfer create prune compact check extract config "config bootstrap" export-tar mount umount restore rlist list rinfo info break-lock borg; do \           echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \           && borgmatic $action --help >> /command-line.txt; doneFROM docker.io/node:19.5.0-alpine as htmlARG ENVIRONMENT=productionWORKDIR /sourceRUN npm install @11ty/eleventy \    @11ty/eleventy-plugin-syntaxhighlight \    @11ty/eleventy-plugin-inclusive-language \    @11ty/eleventy-navigation \    eleventy-plugin-code-clipboard \    markdown-it \    markdown-it-anchor \    markdown-it-replace-linkCOPY --from=borgmatic /etc/borgmatic/config.yaml /source/docs/_includes/borgmatic/config.yamlCOPY --from=borgmatic /command-line.txt /source/docs/_includes/borgmatic/command-line.txtCOPY . /sourceRUN NODE_ENV=${ENVIRONMENT} npx eleventy --input=/source/docs --output=/output/docs \  && mv /output/docs/index.html /output/index.htmlFROM docker.io/nginx:1.22.1-alpineCOPY --from=html /output /usr/share/nginx/htmlCOPY --from=borgmatic /etc/borgmatic/config.yaml /usr/share/nginx/html/docs/reference/config.yaml
 |