Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
# and takes longer to build but that is worth it.
FROM bitnami/minideb:buster AS base

RUN install_packages apt-transport-https gnupg2 ca-certificates

RUN echo "deb https://archive.debian.org/debian/ buster main" > /etc/apt/sources.list && \
echo "deb https://archive.debian.org/debian-security/ buster/updates main" >> /etc/apt/sources.list

RUN install_packages apt-transport-https gnupg2 ca-certificates

# TODO install_packages calls apt-get update and then nukes the list files after. We should avoid multiple calls to apt-get update.....
# We could probably fix this by running the update and installs ourself with `RUN --mount type=cache` but that is "experimental"

Expand Down