-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Buster because that supports Perl 5.34...
- Loading branch information
1 parent
a830e08
commit 2356afb
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ ARG perl=5.32 | |
ARG branches="1.8,1.9,1.10,master" | ||
|
||
# postgresql-autodoc isn't in bullseye, so choose buster or bookworm | ||
FROM perl:$perl-slim-bookworm | ||
FROM perl:$perl-slim-buster | ||
LABEL maintainer="[email protected]" | ||
|
||
# FROM resets ARG, so redeclare | ||
|
@@ -60,6 +60,7 @@ RUN apt-get update && apt-get -y install gnupg2 \ | |
libclass-trigger-perl libclass-accessor-lite-perl libtest-requires-perl \ | ||
libmodule-install-perl python3-setuptools libdist-zilla-perl && \ | ||
apt-get -y install curl ca-certificates wget gnupg2 lsb-release && \ | ||
mkdir -p /etc/apt/keyrings && \ | ||
(curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor > /etc/apt/keyrings/nodesource.gpg ) && \ | ||
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \ | ||
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \ | ||
|