Files @ 34509d23eb9f
Branch filter:

Location: symposion_app/Dockerfile

34509d23eb9f 365 B text/x-dockerfile-config Show Annotation Show as Raw Download as Raw
bsturmfels
Make vendored symposion into an installable Python package

This allows us to install with `pip install "-e vendor/symposion"` similar to
the other vendored packages. There's no good reason for this to be different to
the others and depend on PYTHONPATH hacking.

Re-add
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"]