Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/adoptium-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: adoptium-build

on:
workflow_dispatch:
#push:
pull_request:
branches:
- main
types:
- closed

permissions:
contents: write
Expand All @@ -22,6 +26,8 @@ jobs:
- 17
- 19
- 21
- 24
- 25
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -73,6 +79,8 @@ jobs:
- 17-alpine
- 19-alpine
- 21-alpine
- 24-alpine
- 25-alpine
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/amazon-corretto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: amazon-corretto-build

on:
workflow_dispatch:
#push:
pull_request:
branches:
- main
types:
- closed

permissions:
contents: write
Expand All @@ -23,6 +27,7 @@ jobs:
- 21
- 23
- 24
- 25
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -46,11 +51,9 @@ jobs:
id: meta_corretto
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/amazon-corretto
tags: |
${{ matrix.tag }}

images: ghcr.io/${{ github.repository_owner }}/amazon-corretto
tags: ${{ matrix.tag }}

- name: Build and push images
uses: docker/build-push-action@v3
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/azul-zulu-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: azul-zulu-build

on:
workflow_dispatch:
#push:
pull_request:
branches:
- main
types:
- closed

permissions:
contents: write
Expand All @@ -23,6 +27,7 @@ jobs:
- 21
- 23
- 24
- 25
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -75,6 +80,7 @@ jobs:
- 21-jre
- 23-jre
- 24-jre
- 25-jre
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/graalvm-ce-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: graalvm-ce-build

on:
workflow_dispatch:
#push:
pull_request:
branches:
- main
types:
- closed

permissions:
contents: write
Expand Down
118 changes: 0 additions & 118 deletions .github/workflows/openjdk-build.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# None. Just exist here

.env
39 changes: 28 additions & 11 deletions Adoptium/11-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,36 @@ FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:11-jdk-alpine
LABEL authors="vovamod <veganetworkmain@gmail.com>,en0tuk <kolobokovich123@gmail.com>"

ARG GITHUB_USER
ENV GITHUB_USER ${GITHUB_USER}

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
ENV DEBIAN_FRONTEND=noninteractive
# Fix Docker ENV values
ENV GITHUB_USER=${GITHUB_USER}
ENV LANG='en_US.UTF-8'
ENV LANGUAGE='en_US:en'
ENV LC_ALL='en_US.UTF-8'
ENV TZ='UTC'

RUN apk update --no-cache \
&& apk add bash curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute2
RUN apk add --no-cache \
bash \
curl \
ca-certificates \
git \
openssl \
tar \
sqlite \
tzdata \
iproute2 \
shadow \
libstdc++ \
fontconfig \
font-dejavu \
font-terminus \
font-noto \
font-awesome && useradd -m -d /home/container container

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

RUN adduser -D -h /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh

COPY ./../entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]
CMD ["/bin/bash", "/entrypoint.sh"]
41 changes: 30 additions & 11 deletions Adoptium/11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,41 @@
# ----------------------------------
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:11-jdk-jammy

LABEL authors="vovamod <veganetworkmain@gmail.com>,en0tuk <kolobokovich123@gmail.com>"
LABEL authors="vovamod <veganetworkmain@gmail.com>"

ARG GITHUB_USER
ENV GITHUB_USER ${GITHUB_USER}

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
ENV GITHUB_USER=${GITHUB_USER}
ENV LANG='en_US.UTF-8'
ENV LANGUAGE='en_US:en'
ENV LC_ALL='en_US.UTF-8'
ENV TZ='UTC'
# debian_fix
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y \
&& apt-get install -y curl ca-certificates openssl git tar sqlite3 fontconfig tzdata locales iproute2
RUN apt-get update && apt-get install --no-install-recommends -y \
bash \
curl \
ca-certificates \
git \
openssl \
tar \
sqlite3 \
tzdata \
locales \
iproute2 \
fontconfig \
fonts-dejavu \
fonts-terminus \
fonts-noto \
fonts-font-awesome \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -d /home/container -m container

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

RUN useradd -d /home/container -m container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh

COPY ./../entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]
CMD ["/bin/bash", "/entrypoint.sh"]
39 changes: 28 additions & 11 deletions Adoptium/17-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,36 @@ FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:17-jdk-alpine
LABEL authors="vovamod <veganetworkmain@gmail.com>,en0tuk <kolobokovich123@gmail.com>"

ARG GITHUB_USER
ENV GITHUB_USER ${GITHUB_USER}

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
ENV DEBIAN_FRONTEND=noninteractive
# Fix Docker ENV values
ENV GITHUB_USER=${GITHUB_USER}
ENV LANG='en_US.UTF-8'
ENV LANGUAGE='en_US:en'
ENV LC_ALL='en_US.UTF-8'
ENV TZ='UTC'

RUN apk update --no-cache \
&& apk add bash curl ca-certificates openssl git tar sqlite fontconfig tzdata iproute2
RUN apk add --no-cache \
bash \
curl \
ca-certificates \
git \
openssl \
tar \
sqlite \
tzdata \
iproute2 \
shadow \
libstdc++ \
fontconfig \
font-dejavu \
font-terminus \
font-noto \
font-awesome && useradd -m -d /home/container container

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

RUN adduser -D -h /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh

COPY ./../entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]
CMD ["/bin/bash", "/entrypoint.sh"]
Loading
Loading