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

Commit 192ebf0

Browse files
committed
feat(ci): Use Eclipse Temurin to replace AdoptOpenJDK
1 parent 33a375c commit 192ebf0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/build_release_docker_image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,6 @@ jobs:
104104
if [ "${TAG}" != "${TAGS[0]}" ]; then
105105
docker tag "${IMAGE_BASE}:${TAGS[0]}" "${IMAGE_BASE}:${TAG}"
106106
fi
107-
docker push "${IMAGE_BASE}:${TAG}
107+
docker push "${IMAGE_BASE}:${TAG}"
108108
done
109109
working-directory: ./ci

ci/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ RUN apt-get update \
88
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
99
&& locale-gen en_US.UTF-8
1010

11-
# # import public keys
1211
RUN apt-get install -y --no-install-recommends software-properties-common wget apt-transport-https gnupg \
13-
&& wget --no-check-certificate -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \
12+
&& wget --no-check-certificate -qO - https://packages.adoptium.net/artifactory/api/gpg/key/public | apt-key add - \
1413
&& wget --no-check-certificate -qO - https://nginx.org/keys/nginx_signing.key | apt-key add - \
15-
&& add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \
14+
&& add-apt-repository --yes https://packages.adoptium.net/artifactory/deb/ \
1615
&& echo "deb https://nginx.org/packages/mainline/ubuntu/ bionic nginx" >> /etc/apt/sources.list \
1716
&& echo "deb-src https://nginx.org/packages/mainline/ubuntu/ bionic nginx" >> /etc/apt/sources.list \
1817
&& apt-get update \
19-
&& apt-get install -y --no-install-recommends supervisor adoptopenjdk-11-hotspot-jre nginx \
18+
&& apt-get install -y --no-install-recommends supervisor temurin-11-jdk nginx \
2019
&& rm -rf /var/lib/apt/lists/*
2120

2221
# Create logs storaging

0 commit comments

Comments
 (0)