Skip to content

Commit

Permalink
feat: amazon corretto alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossg committed Sep 24, 2024
1 parent c5cdfe8 commit 1500c49
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion amazoncorretto-11-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amazoncorretto:11-alpine

RUN apk add --no-cache bash curl openssh-client
RUN apk add --no-cache bash openssh-client

# common for all images
LABEL org.opencontainers.image.title="Apache Maven"
Expand Down
2 changes: 1 addition & 1 deletion amazoncorretto-17-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amazoncorretto:17-alpine

RUN apk add --no-cache bash curl openssh-client
RUN apk add --no-cache bash openssh-client

# common for all images
LABEL org.opencontainers.image.title="Apache Maven"
Expand Down
2 changes: 1 addition & 1 deletion amazoncorretto-21-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amazoncorretto:21-alpine

RUN apk add --no-cache bash curl openssh-client
RUN apk add --no-cache bash openssh-client

# common for all images
LABEL org.opencontainers.image.title="Apache Maven"
Expand Down
2 changes: 1 addition & 1 deletion amazoncorretto-23-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amazoncorretto:23-alpine

RUN apk add --no-cache bash curl openssh-client
RUN apk add --no-cache bash openssh-client

# common for all images
LABEL org.opencontainers.image.title="Apache Maven"
Expand Down
2 changes: 1 addition & 1 deletion amazoncorretto-8-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM amazoncorretto:8-alpine

RUN apk add --no-cache bash curl openssh-client
RUN apk add --no-cache bash openssh-client

# common for all images
LABEL org.opencontainers.image.title="Apache Maven"
Expand Down
1 change: 1 addition & 0 deletions tests/tests.bats
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ base_image=eclipse-temurin-17

@test "$SUT_TAG curl is installed" {
if [[ "$SUT_TAG" == amazoncorretto-*-debian ]] ||
[[ "$SUT_TAG" == amazoncorretto-*-alpine ]] ||
[[ "$SUT_TAG" == azulzulu-*-debian ]]; then
run -127 docker run --rm $SUT_IMAGE:$SUT_TAG curl --version
else
Expand Down

0 comments on commit 1500c49

Please sign in to comment.