Skip to content

Commit

Permalink
chore: remove procps curl from azulzulu debian
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossg committed Aug 8, 2024
1 parent 59369c2 commit 04aea79
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,16 @@ Some come from the parent images and some are installed in this image for backwa
| amazoncorretto-21-debian | | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | | ✔︎ |
| azulzulu-8 | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-8-alpine | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-8-debian | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-8-debian | | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | | ✔︎ |
| azulzulu-11 | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-11-alpine | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-11-debian | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-11-debian | | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | | ✔︎ |
| azulzulu-17 | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-17-alpine | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-17-debian | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-17-debian | | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | | ✔︎ |
| azulzulu-21 | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-21-alpine | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-21-debian | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| azulzulu-21-debian | | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | | ✔︎ |
| eclipse-temurin-8 | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| eclipse-temurin-8-alpine | | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
| eclipse-temurin-8-focal | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | ✔︎ | | ✔︎ |
Expand Down
2 changes: 1 addition & 1 deletion azulzulu-11-debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM azul/zulu-openjdk-debian:11

RUN apt-get update \
&& apt-get install -y --no-install-recommends openssh-client procps curl \
&& apt-get install -y --no-install-recommends openssh-client \
&& rm -rf /var/lib/apt/lists/*

# common for all images
Expand Down
2 changes: 1 addition & 1 deletion azulzulu-17-debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM azul/zulu-openjdk-debian:17

RUN apt-get update \
&& apt-get install -y --no-install-recommends openssh-client procps curl \
&& apt-get install -y --no-install-recommends openssh-client \
&& rm -rf /var/lib/apt/lists/*

# common for all images
Expand Down
2 changes: 1 addition & 1 deletion azulzulu-21-debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM azul/zulu-openjdk-debian:21

RUN apt-get update \
&& apt-get install -y --no-install-recommends openssh-client procps curl \
&& apt-get install -y --no-install-recommends openssh-client \
&& rm -rf /var/lib/apt/lists/*

# common for all images
Expand Down
2 changes: 1 addition & 1 deletion azulzulu-8-debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM azul/zulu-openjdk-debian:8

RUN apt-get update \
&& apt-get install -y --no-install-recommends openssh-client procps curl \
&& apt-get install -y --no-install-recommends openssh-client \
&& rm -rf /var/lib/apt/lists/*

# common for all images
Expand Down
6 changes: 4 additions & 2 deletions tests/tests.bats
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ base_image=eclipse-temurin-11

@test "$SUT_TAG curl is installed" {
run docker run --rm $SUT_IMAGE:$SUT_TAG curl --version
if [[ "$SUT_TAG" == amazoncorretto-*-debian ]]; then
if [[ "$SUT_TAG" == amazoncorretto-*-debian ]] ||
[[ "$SUT_TAG" == azulzulu-*-debian ]]; then
[ $status -ne 0 ]
else
[ $status -eq 0 ]
Expand Down Expand Up @@ -135,7 +136,8 @@ base_image=eclipse-temurin-11
[[ "$SUT_TAG" == "amazoncorretto-"* ]] ||
[[ "$SUT_TAG" == libericaopenjdk-*-debian ]] ||
[[ "$SUT_TAG" == openjdk-?? ]] ||
[[ "$SUT_TAG" == *"graalvm"* ]]
[[ "$SUT_TAG" == *"graalvm"* ]] ||
[[ "$SUT_TAG" == azulzulu-*-debian ]]

); then
[ $status -eq 0 ]
Expand Down

0 comments on commit 04aea79

Please sign in to comment.