2023-03-23 14:34:55 +01:00
|
|
|
# Dockerfile
|
2024-01-08 17:16:24 +01:00
|
|
|
FROM pretix/standalone:stable
|
2024-01-08 21:29:31 +01:00
|
|
|
USER pretixuser
|
2023-03-23 14:38:19 +01:00
|
|
|
RUN PYTHONPATH=$PYTHONPATH:/pretix/src pip3 install pretix-ldap
|
2024-01-08 21:30:59 +01:00
|
|
|
RUN cd /pretix/.local/lib && ls
|
2024-01-08 21:27:04 +01:00
|
|
|
#RUN sed -i 's/ugettext_lazy/gettext_lazy/' /pretix/.local/lib/python3.11/site-packages/pretix_ldap/__init__.py
|
2024-01-08 17:16:24 +01:00
|
|
|
USER pretixuser
|
2023-03-23 14:38:19 +01:00
|
|
|
RUN cd /pretix/src && make production
|