Introduction In a previous article, I wrote about creating a Docker container for an existing Django project. The Dockerfile in that article copies the source code directly into the Docker image. This is good when you are ready to release the app to production but slows development because you have to rebuild the entire image..
Author: Layne Lund
Introduction I have been working with Django for the last two years here at Accendero. We are working on a project that will be deployed in a Docker container, so I started looking into what it takes to create one for an existing Django project. The Docker documentation explains how to build an image and..