diff --git a/Dockerfile b/Dockerfile index 47c0b13..68d97ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ RUN /tmp/fetch_binaries.sh -FROM alpine:3.18.0 +FROM alpine:3.19.1 RUN set -ex \ && echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \ diff --git a/build/fetch_binaries.sh b/build/fetch_binaries.sh index 2ac6a2e..81ce61b 100755 --- a/build/fetch_binaries.sh +++ b/build/fetch_binaries.sh @@ -25,8 +25,8 @@ get_ctop() { } get_calicoctl() { - VERSION=$(get_latest_release projectcalico/calicoctl) - LINK="https://github.com/projectcalico/calicoctl/releases/download/${VERSION}/calicoctl-linux-${ARCH}" + VERSION=$(get_latest_release projectcalico/calico) + LINK="https://github.com/projectcalico/calico/releases/download/${VERSION}/calicoctl-linux-${ARCH}" wget "$LINK" -O /tmp/calicoctl && chmod +x /tmp/calicoctl }