Changelog
in this devlog, I moved my whole project to Docker, which allows me to deploy it much more easily and is just cleaner overall.
I started off with a basic dockerfile, and then iterated on it to fix some issues. One of the major issues I had was with pip, since I was running it as root and my actual program couldn’t access/find the modules at all, and I fixed this by chowning the /app directory and then switching to the user straight away before running pip.
Basically, I added a Docker file and docker-compose that uses my existing .env system and makes deployment much cleaner
Log in to leave a comment