Files @ d4b0b52253ae
Branch filter:

Location: symposion_app/Dockerfile

d4b0b52253ae 365 B text/x-dockerfile-config Show Annotation Show as Raw Download as Raw
Joel Addison
Registrasion updates

Show applied vouchers on attendee registration admin page.
Add head title and page title to more areas.
Update the dashboard to show warning for empty categories and have
button to open voucher page.
Fix exception on attendee page when user does not have attendee object.
FROM symposion_app

COPY static/src/fonts/*.ttf /usr/local/share/fonts/
RUN fc-cache && fc-list

FROM symposion_base as symposion_dev
VOLUME /app/symposion_app
CMD ["./manage.py", "runserver", "-v3", "0.0.0.0:8000"]

FROM symposion_base as symposion_prod
CMD ["/usr/local/bin/uwsgi", "--http-socket", "0.0.0.0:8000", "-b", "8192", "--wsgi-file", "pinaxcon/wsgi.py"]