Switch Docker base file from alpine to python #14
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Reference: homer77/FritzAB2Matrix#14
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As https://pythonspeed.com/articles/alpine-docker-python/ points out using alpine images as base for Docker files hosting python projects seems not to be a good choice.
It says that images become bigger, slower and as far as PyPI is concerned much more error prone.
So I should maybe change the base image to the
python:<version>-slim
image.Tried to use the slim image as base but because of the ffmpeg dependency the build gets really huge as it installs the whole graphical and audio systems. And building takes a looooong time. Seems like I could also use the python or ubuntu images then.
As I have the alpine variant running I stick to that for the moment.