Skip to content

Commit

Permalink
Update dependabot schedule, metadata, fix GraalVM Java 17 and 21 images
Browse files Browse the repository at this point in the history
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
garrettsummerfi3ld committed Dec 19, 2024
1 parent 3838d0c commit 9766d2f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
3 changes: 3 additions & 0 deletions java/11/graalvm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion java/17/graalvm/Dockerfile
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
Expand Down
5 changes: 4 additions & 1 deletion java/21/graalvm/Dockerfile
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
Expand Down
3 changes: 3 additions & 0 deletions java/8/graalvm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9766d2f

Please sign in to comment.