-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from Autumn808/alpine-3.16-eol
Updated Alpine to 3.20
- Loading branch information
Showing
9 changed files
with
135 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=11.0.23.9.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-11=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-11-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm | ||
ENV PATH=$PATH:/usr/lib/jvm/default-jvm/bin |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=17.0.11.9.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-17=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-17-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm | ||
ENV PATH=$PATH:/usr/lib/jvm/default-jvm/bin |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=21.0.3.9.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-21=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-21-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm | ||
ENV PATH=$PATH:/usr/lib/jvm/default-jvm/bin |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=22.0.1.8.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-22=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-22-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm | ||
ENV PATH=$PATH:/usr/lib/jvm/default-jvm/bin |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=8.412.08.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-8=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-8-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm | ||
ENV PATH=$PATH:/usr/lib/jvm/default-jvm/bin |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM alpine:3.20 | ||
|
||
ARG version=8.412.08.1 | ||
|
||
# Please note that the THIRD-PARTY-LICENSE could be out of date if the base image has been updated recently. | ||
# The Corretto team will update this file but you may see a few days' delay. | ||
RUN wget -O /THIRD-PARTY-LICENSES-20200824.tar.gz https://corretto.aws/downloads/resources/licenses/alpine/THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
echo "82f3e50e71b2aee21321b2b33de372feed5befad6ef2196ddec92311bc09becb /THIRD-PARTY-LICENSES-20200824.tar.gz" | sha256sum -c - && \ | ||
tar x -ovzf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
rm -rf THIRD-PARTY-LICENSES-20200824.tar.gz && \ | ||
wget -O /etc/apk/keys/amazoncorretto.rsa.pub https://apk.corretto.aws/amazoncorretto.rsa.pub && \ | ||
SHA_SUM="6cfdf08be09f32ca298e2d5bd4a359ee2b275765c09b56d514624bf831eafb91" && \ | ||
echo "${SHA_SUM} /etc/apk/keys/amazoncorretto.rsa.pub" | sha256sum -c - && \ | ||
echo "https://apk.corretto.aws" >> /etc/apk/repositories && \ | ||
apk add --no-cache amazon-corretto-8-jre=$version-r0 && \ | ||
rm -rf /usr/lib/jvm/java-8-amazon-corretto/lib/src.zip | ||
|
||
|
||
ENV LANG C.UTF-8 | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/default-jvm/jre |
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
cdae5f8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Contents for library/amazoncorretto:
updated tags for [library/amazoncorretto](https://github.com/docker-library/official-images/blob/master/library/amazoncorretto)