Docker/gitea-external-renderers.Dockerfile

9 lines
148 B
Docker
Raw Permalink Normal View History

ARG GITEA_VERSION=latest
FROM gitea/gitea:${GITEA_VERSION}-rootless
2023-12-16 20:08:43 +01:00
USER root
RUN apk --no-cache add \
asciidoctor \
pandoc
USER 1000:1000