-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependabot schedule, metadata, fix GraalVM Java 17 and 21 images
Dependabot is now running weekly instead of daily checks. Metadata for the GraalVM images is now added. Java 17 and Java 21 GraalVM images point to the correct base image now.
- Loading branch information
1 parent
3838d0c
commit 9766d2f
Showing
5 changed files
with
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ updates: | |
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
interval: "weekly" |
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-ce:java11 | |
|
||
LABEL author="Garrett Summerfield" maintainer="[email protected]" | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/PizzabyteLLC/images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
|
||
RUN microdnf update \ | ||
&& microdnf install -y curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute gcc gcc-c++ freetype libstdc++ lsof glibc-locale-source glibc-langpack-en \ | ||
&& microdnf clean all | ||
|
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-community:17 | ||
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-community:17.0.9 | ||
|
||
LABEL author="Garrett Summerfield" maintainer="[email protected]" | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/PizzabyteLLC/images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
|
||
RUN microdnf update \ | ||
&& microdnf install -y curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute gcc gcc-c++ freetype libstdc++ lsof glibc-locale-source glibc-langpack-en \ | ||
&& microdnf clean all | ||
|
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-community:21 | ||
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-community:21.0.2 | ||
|
||
LABEL author="Garrett Summerfield" maintainer="[email protected]" | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/PizzabyteLLC/images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
|
||
RUN microdnf update \ | ||
&& microdnf install -y curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute gcc gcc-c++ freetype libstdc++ lsof glibc-locale-source glibc-langpack-en \ | ||
&& microdnf clean all | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,9 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/graalvm/graalvm-ce:java8 | |
|
||
LABEL author="Garrett Summerfield" maintainer="[email protected]" | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/PizzabyteLLC/images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
|
||
RUN microdnf update \ | ||
&& microdnf install -y curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute gcc gcc-c++ freetype libstdc++ lsof glibc-locale-source glibc-langpack-en \ | ||
&& microdnf clean all | ||
|