Skip to content

Commit

Permalink
Add Microsoft Build for OpenJDK Docker Image
Browse files Browse the repository at this point in the history
Signed-off-by: Minionguyjpro <[email protected]>
  • Loading branch information
Minionguyjpro committed Sep 19, 2024
1 parent f776a0e commit 2eef7ef
Show file tree
Hide file tree
Showing 6 changed files with 185 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/java-microsoft-openjdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: build java_microsoft_openjdk

on:
workflow_dispatch:
schedule:
- cron: "0 17 1,15 * *" # bi-weekly on 1st and 15th calendar day at 17:00
push:
branches:
- main
paths:
- java-microsoft-openjdk/**

permissions:
actions: read
packages: write

concurrency:
group: java-microsoft-openjdk-${{ github.ref }}-1
cancel-in-progress: true

jobs:
build_and_push:
name: "java_${{ matrix.tag }}_microsoft_openjdk"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tag:
- 8
- 11
- 17
- 21
steps:
- name: Git checkout for Github repository workspace
uses: actions/checkout@v4

- name: Setup QEMU for multiarch builds
uses: docker/setup-qemu-action@v3

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug

- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up repository in lowercase
run: |
repo="${{ github.repository }}"
repo_lower=$(echo "$repo" | tr '[:upper:]' '[:lower:]')
echo "repo_lower=$repo_lower" >> $GITHUB_ENV
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: ./java-microsoft-openjdk
platforms: linux/amd64,linux/arm64
file: ./java-microsoft-openjdk/${{ matrix.tag }}/Dockerfile
push: true
tags: ghcr.io/${{ env.repo_lower }}:java_${{ matrix.tag }}_microsoft_openjdk
25 changes: 25 additions & 0 deletions java-microsoft-openjdk/11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM mcr.microsoft.com/openjdk/jdk:11-ubuntu

LABEL author="Software-noob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
LABEL org.opencontainers.image.licenses="MIT"

ENV DEBIAN_FRONTEND noninteractive

Check warning on line 7 in java-microsoft-openjdk/11/Dockerfile

View workflow job for this annotation

GitHub Actions / java_11_microsoft_openjdk

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update \
&& apt-get -y install --no-install-recommends curl ffmpeg iproute2 git sqlite3 python3 tzdata ca-certificates dnsutils fontconfig libfreetype6 libstdc++6 lsof build-essential locales \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -m -d /home/container container \
&& locale-gen en_US.UTF-8

ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
25 changes: 25 additions & 0 deletions java-microsoft-openjdk/17/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM mcr.microsoft.com/openjdk/jdk:17-ubuntu

LABEL author="Software-noob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
LABEL org.opencontainers.image.licenses="MIT"

ENV DEBIAN_FRONTEND noninteractive

Check warning on line 7 in java-microsoft-openjdk/17/Dockerfile

View workflow job for this annotation

GitHub Actions / java_17_microsoft_openjdk

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update \
&& apt-get -y install --no-install-recommends curl ffmpeg iproute2 git sqlite3 python3 tzdata ca-certificates dnsutils fontconfig libfreetype6 libstdc++6 lsof build-essential locales \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -m -d /home/container container \
&& locale-gen en_US.UTF-8

ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
25 changes: 25 additions & 0 deletions java-microsoft-openjdk/21/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM mcr.microsoft.com/openjdk/jdk:21-ubuntu

LABEL author="Software-noob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
LABEL org.opencontainers.image.licenses="MIT"

ENV DEBIAN_FRONTEND noninteractive

Check warning on line 7 in java-microsoft-openjdk/21/Dockerfile

View workflow job for this annotation

GitHub Actions / java_21_microsoft_openjdk

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update \
&& apt-get -y install --no-install-recommends curl ffmpeg iproute2 git sqlite3 python3 tzdata ca-certificates dnsutils fontconfig libfreetype6 libstdc++6 lsof build-essential locales \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -m -d /home/container container \
&& locale-gen en_US.UTF-8

ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
23 changes: 23 additions & 0 deletions java-microsoft-openjdk/8/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM mcr.microsoft.com/openjdk/jdk:8-mariner

LABEL author="Softwarenoob" maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/Software-Noob/pterodactyl-images"
LABEL org.opencontainers.image.licenses="MIT"

RUN yum upgrade -y \
&& yum install -y curl ca-certificates openssl git tar sqlite fontconfig freetype libstdc++.so.6 freetype-devel lsof build-essential tzdata iproute \
git gcc gcc-c++ automake make libtool \
&& yum clean all \
&& rm -rf /var/cache/yum \
&& useradd -m -d /home/container container

ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
22 changes: 22 additions & 0 deletions java-microsoft-openjdk/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash
cd /home/container || exit 1

# Configure colors
YELLOW='\033[0;33m'
RESET_COLOR='\033[0m'

# Print Current Java Version
java -version

# Set environment variable that holds the Internal Docker IP
INTERNAL_IP=$(ip route get 1 | awk '{print $(NF-2);exit}')
export INTERNAL_IP

# Replace Startup Variables
# shellcheck disable=SC2086
MODIFIED_STARTUP=$(eval echo "$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g')")
echo -e "${YELLOW}[Startup Command]: ${MODIFIED_STARTUP} ${RESET_COLOR}"

# Run the Server
# shellcheck disable=SC2086
exec ${MODIFIED_STARTUP}

0 comments on commit 2eef7ef

Please sign in to comment.