This repository was archived by the owner on Jun 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
1211RUN 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
You can’t perform that action at this time.
0 commit comments