This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
ccchh-pretix/Dockerfile

14 lines
266 B
Docker

FROM docker.io/pretix/standalone:2023.10.2
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"]