Docker/gitea-external-renderers.Dockerfile

9 lines
136 B
Docker

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