mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #982] [Docker] replace pip with apt #687
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#687
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Originally created by @Firesphere on GitHub (Mar 31, 2024).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/982
I believe build of the Docker container could be sped up by using apt python packages instead of running the installation using pip?
From what I can see, the following packages are readily available in apt, if prefixed with
pithon3-By using apt instead of pip, build times could be greatly reduced, as apt installations are a lot faster than pip
@cuu508 commented on GitHub (Apr 1, 2024):
We install specific versions of python packages. Debian repositories usually lag behind PyPI, and only have older versions available.
fido2 requires cryptography which is the slowest one to build. The rest are not that different from deb packages, install speed wise.