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
Raw Normal View History

FROM docker.io/pretix/standalone:2023.10.2
2023-12-03 12:50:23 +01:00
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
2023-12-03 14:31:24 +01:00
ENTRYPOINT ["/entrypoint.sh"]