Skip to content

Commit 8791499

Browse files
locaocuriositycasualty
authored andcommitted
fix(Dockerfile): added missing target file for deb package (#703)
Target file was missing when downloading Kong package for Ubuntu distros, stdouting the contents. (cherry picked from commit 7c1f670)
1 parent 5c42943 commit 8791499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN set -ex; \
2727
apt-get install -y --no-install-recommends curl ca-certificates \
2828
&& UBUNTU_CODENAME=$(cat /etc/os-release | grep UBUNTU_CODENAME | cut -d = -f 2) \
2929
&& KONG_REPO=$(echo ${KONG_VERSION%.*} | sed 's/\.//') \
30-
&& curl -fL https://packages.konghq.com/public/gateway-$KONG_REPO/deb/ubuntu/pool/$UBUNTU_CODENAME/main/k/ko/kong_$KONG_VERSION/kong_${KONG_VERSION}_$arch.deb \
30+
&& curl -fL https://packages.konghq.com/public/gateway-$KONG_REPO/deb/ubuntu/pool/$UBUNTU_CODENAME/main/k/ko/kong_$KONG_VERSION/kong_${KONG_VERSION}_$arch.deb -o /tmp/kong.deb \
3131
&& apt-get purge -y curl \
3232
&& echo "$KONG_SHA256 /tmp/kong.deb" | sha256sum -c - \
3333
|| exit 1; \

0 commit comments

Comments
 (0)