This repository has been archived on 2024-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ccchh-pretix/Dockerfile

13 lines
265 B
Docker

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