initial commit

This commit is contained in:
Valvin 2019-01-09 08:11:48 +01:00
commit f6e738dea5
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM alpine:edge
RUN apk --no-cache add zip libressl python3 git ghostscript-fonts fontconfig inkscape
RUN wget https://www.peppercarrot.com/0_sources/0ther/tools/zip/peppercarrot-fonts-latest.zip \
&& unzip -d /usr/share/fonts/ peppercarrot-fonts-latest.zip \
&& fc-cache -f \
&& addgroup -g 1001 carrot \
&& adduser -G carrot -D -u 1001 carrot \
&& cd /home/carrot \
&& wget -O renderfarm-lite.py https://framagit.org/peppercarrot/tools/raw/master/utils/renderfarm-lite.py?inline=false \
&& chmod +x /home/carrot/renderfarm-lite.py
USER 1001