We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2bdf40 commit 60c85aeCopy full SHA for 60c85ae
Dockerfile
@@ -10,6 +10,9 @@
10
# and takes longer to build but that is worth it.
11
FROM bitnami/minideb:buster AS base
12
13
+RUN echo "deb http://archive.debian.org/debian/ buster main" > /etc/apt/sources.list && \
14
+ echo "deb http://archive.debian.org/debian-security/ buster/updates main" >> /etc/apt/sources.list
15
+
16
# TODO install_packages calls apt-get update and then nukes the list files after. We should avoid multiple calls to apt-get update.....
17
# We could probably fix this by running the update and installs ourself with `RUN --mount type=cache` but that is "experimental"
18
0 commit comments