From 8c922b393a9487e5e4ebd1f6d3114bf4747ece13 Mon Sep 17 00:00:00 2001 From: Vinicius Mignot Date: Fri, 31 May 2024 18:19:37 -0300 Subject: [PATCH] fix(Dockerfile): added missing target file for deb package Target file was missing when downloading Kong package for Ubuntu distros, stdouting the contents. --- ubuntu/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 4f2b7ce6..68b964df 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -27,7 +27,7 @@ RUN set -ex; \ apt-get install -y --no-install-recommends curl ca-certificates \ && UBUNTU_CODENAME=$(cat /etc/os-release | grep UBUNTU_CODENAME | cut -d = -f 2) \ && KONG_REPO=$(echo ${KONG_VERSION%.*} | sed 's/\.//') \ - && 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 \ + && 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 \ && apt-get purge -y curl \ && echo "$KONG_SHA256 /tmp/kong.deb" | sha256sum -c - \ || exit 1; \