Agreed. As someone that Dockerizes all of their Django development I can
speak to how opinionated such an image would HAVE to be.
It can certainly be done, but I don’t think it should.
There is also an implied security / maintenance burden so unfortunately
even if it were appropriate, it’s not ex
I think the point we are trying to make is that it’s fundamentally not a
good thing to try and distribute a one-size fits all docker image for a
specific framework.
For reference here is one you can use yourself:
FROM python:3
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
C
I can make a version for production use (in a week or two), for your
critics.
For example, based on Appache wsgi.
PS: maybe it is also worth to make a docker image for testing changes in
Django source?
On Wednesday, February 27, 2019 at 4:31:17 PM UTC+2, Jamesie Pic wrote:
>
> > most people cu
I have a problem I've only been able to solvewhich bugs me. I've posted on
the Django users list (to stunning silence) and on stackoverflow:
https://stackoverflow.com/questions/54388936/using-django-window-functions-on-a-filtered-queryset
to comparable silence. I'm rather convinced this can't b