Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restore curl in Ubuntu and Centos images #256

Merged
merged 2 commits into from
Aug 12, 2022
Merged
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_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'

# Select the ubuntu OS packages
print_ubuntu_pkg() {
packages="tzdata wget ca-certificates fontconfig locales"
packages="tzdata curl wget ca-certificates fontconfig locales"
# binutils is needed on JDK13+ for jlink to work https://github.com/docker-library/openjdk/issues/351
if [[ $version -ge 13 ]]; then
packages+=" binutils"
Expand Down Expand Up @@ -250,7 +250,7 @@ EOI

# Select the CentOS packages.
print_centos_pkg() {
packages="tzdata openssl wget ca-certificates fontconfig gzip tar"
packages="tzdata openssl curl wget ca-certificates fontconfig gzip tar"
# binutils is needed on JDK13+ for jlink to work https://github.com/docker-library/openjdk/issues/351
if [[ $version -ge 13 ]]; then
packages+=" binutils"
Expand Down