Added simple executable for rendering rst files.

This commit is contained in:
2022-07-05 21:47:19 +02:00
commit bae09cabba
3 changed files with 71 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM gitea/gitea:latest
COPY ./rst2htmlbody.py /bin/rst2htmlbody
RUN apk --no-cache add py3-docutils && \
chmod 755 /bin/rst2htmlbody