Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 7e437d3

Browse files
authored
Merge pull request #27 from fullstack-devops/bugfix/move-to-temurin-11-jdk
move to temurin 11 jdk
2 parents d963b1c + 7219a3b commit 7e437d3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

images/fullstacked/Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@ FROM ghcr.io/fullstack-devops/github-actions-runner:base-latest
33
USER root
44
# install packages along with jq so we can parse JSON
55
# add additional packages as necessary
6-
ARG PACKAGES="openjdk-11-jdk maven nodejs ansible"
6+
ARG PACKAGES="temurin-11-jdk maven nodejs ansible"
77
ARG PACKAGES_PYTHON="kubernetes"
88

9+
RUN wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add -
10+
RUN echo "deb https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | tee /etc/apt/sources.list.d/adoptium.list
11+
912
RUN apt-get update \
1013
&& add-apt-repository -y --update ppa:ansible/ansible \
1114
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
1215
&& apt-get install -y --no-install-recommends ${PACKAGES} \
1316
&& rm -rf /var/lib/apt/lists/* \
1417
&& apt-get clean
1518

16-
ENV GH_RUNNER_LABELS="ubuntu-20.04,maven,openjdk-11,nodejs,go,yarn,helm,ansible"
19+
ENV GH_RUNNER_LABELS="ubuntu-20.04,maven,temurin-11,nodejs,go,yarn,helm,ansible"
1720
# https://github.com/helm/helm/releases
1821
ARG HELM_VERSION=3.8.1
1922
# https://go.dev/dl/

0 commit comments

Comments
 (0)