Docker/gitea-external-renderers.Dockerfile

9 lines
148 B
Docker

ARG GITEA_VERSION=latest
FROM gitea/gitea:${GITEA_VERSION}-rootless
USER root
RUN apk --no-cache add \
asciidoctor \
pandoc
USER 1000:1000