Customize Pretix for our use

This commit is contained in:
Stefan Bethke 2023-12-03 12:50:23 +01:00
commit aa1e3a65ae
4 changed files with 125 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM docker.io/pretix/standalone:2023.10.0
USER root
COPY entrypoint.sh /
RUN true \
&& chmod +x /entrypoint.sh \
&& touch /etc/pretix/pretix.cfg \
&& chown pretixuser /etc/pretix/pretix.cfg \
&& true
USER pretixuser
ENTRYPOINT /entrypoint.sh