Graham Dumpleton
Graham Dumpleton
I can't unfortunately just go and set ``USER`` to be non ``root`` as it will then break things for everyone who relies on the existing behaviour. This is one of...
You can run ``mod_wsgi-express start-server --help`` rather than needing to dig through the source code. Right now there is no separate documentation, but options in the main wrap options from...
Packages are not cached because doing that results in them bloating out the image, as they would live in a lower layer. Deleting them in a higher layer doesn't free...
FWIW, Glyph has posted on this topic before at: * https://glyph.twistedmatrix.com/2015/03/docker-deploy-double-dutch.html and I have also posted about it as well. * https://blog.openshift.com/using-image-source-reduce-build-times/ * http://blog.dscpl.com.au/2016/03/speeding-up-docker-build-times-for.html The newer versions of docker images...
In the general case, the other issue is that a ``requirements.txt`` file can list a local directory from which to install a package. This could even be the application code...
When those images were originally written, the concept of build arguments didn't exist in docker. As to trying to do the wheelhouse, where are trying to do that? That image...
More information is required. What do you have in your ``Dockerfile``? Have you added a ``build`` action hook? As what path in the source code? Is the file executable? What...
If you haven't already, look at: * https://github.com/GrahamDumpleton/mod_wsgi-docker/tree/master/demos/django-1.7 This shows what you would need for Django. The primary things are: * .whiskey/action_hooks/build (executable shell script) - https://github.com/GrahamDumpleton/mod_wsgi-docker/blob/master/demos/django-1.7/.whiskey/action_hooks/build - This is...
Take out: ``` USER $MOD_WSGI_USER:$MOD_WSGI_GROUP ```
As I said already, this image is being superseded. So am investing time in the replacement instead. I also don't understand why it didn't work with the ``USER`` statement at...