We're currently using alpine for the bot Dockerfile, and it sucks. It's super slow to install the pipenv dependencies, apparently because alpine has a weird C compiler which makes it compile every pip library from scratch instead of using the wheels.
Let's change it to something like minideb or even ubuntu. They're still pretty lean images, but they don't have this problem so build times should be reduced significantly just by using a different image.
We're currently using
alpinefor the bot Dockerfile, and it sucks. It's super slow to install the pipenv dependencies, apparently because alpine has a weird C compiler which makes it compile every pip library from scratch instead of using the wheels.Let's change it to something like
minidebor evenubuntu. They're still pretty lean images, but they don't have this problem so build times should be reduced significantly just by using a different image.