Files @ 7fac10241ec7
Branch filter:

Location: symposion_app/Dockerfile

7fac10241ec7 365 B text/x-dockerfile-config Show Annotation Show as Raw Download as Raw
Joel Addison
Improve attendee reports

Display attendee profile data in normal table without DataTables so
sorting is not applied, causing data to be confusing to read.
Include item quantity in attendee data report for accurate schwag packing.
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"]