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:
104
104
if [ "${TAG}" != "${TAGS[0]}" ]; then
105
105
docker tag "${IMAGE_BASE}:${TAGS[0]}" "${IMAGE_BASE}:${TAG}"
106
106
fi
107
- docker push "${IMAGE_BASE}:${TAG}
107
+ docker push "${IMAGE_BASE}:${TAG}"
108
108
done
109
109
working-directory : ./ci
Original file line number Diff line number Diff line change @@ -8,15 +8,14 @@ RUN apt-get update \
8
8
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
9
9
&& locale-gen en_US.UTF-8
10
10
11
- # # import public keys
12
11
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 - \
14
13
&& 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/ \
16
15
&& echo "deb https://nginx.org/packages/mainline/ubuntu/ bionic nginx" >> /etc/apt/sources.list \
17
16
&& echo "deb-src https://nginx.org/packages/mainline/ubuntu/ bionic nginx" >> /etc/apt/sources.list \
18
17
&& 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 \
20
19
&& rm -rf /var/lib/apt/lists/*
21
20
22
21
# Create logs storaging
You can’t perform that action at this time.
0 commit comments