From 20d5bf8ea307c48d83c5c61b54c6e5bea13320db Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Mon, 15 Jul 2024 10:11:17 -0400 Subject: [PATCH] networking: Add jq, update rclone --- networking | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/networking b/networking index 8ac4194..bcdad73 100644 --- a/networking +++ b/networking @@ -2,16 +2,16 @@ FROM ubuntu:22.04 RUN apt-get update && \ - apt-get install -yy iproute2 traceroute iputils-ping iputils-tracepath netcat nmap bind9-dnsutils curl openssh-client zip unzip && \ + apt-get install -yy iproute2 traceroute iputils-ping iputils-tracepath netcat nmap bind9-dnsutils curl openssh-client zip unzip jq && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* ARG TARGETPLATFORM -RUN if [ $TARGETPLATFORM = "linux/amd64" ]; then curl -Lo /tmp/rclone.zip https://downloads.rclone.org/v1.65.0/rclone-v1.65.0-linux-amd64.zip ; \ - elif [ $TARGETPLATFORM = "linux/arm/v7" ]; then curl -Lo /tmp/rclone.zip https://downloads.rclone.org/v1.65.0/rclone-v1.65.0-linux-arm-v7.zip ; \ - elif [ $TARGETPLATFORM = "linux/arm64" ]; then curl -Lo /tmp/rclone.zip https://downloads.rclone.org/v1.65.0/rclone-v1.65.0-linux-arm64.zip ; \ - elif [ $TARGETPLATFORM = "linux/ppc64le" ]; then curl -Lo /tmp/rclone.zip https://downloads.rclone.org/v1.65.0/rclone-v1.65.0-linux-mipsle.zip ; \ +RUN if [ $TARGETPLATFORM = "linux/amd64" ]; then curl -Lo /tmp/rclone.zip https://github.com/rclone/rclone/releases/download/v1.67.0/rclone-v1.67.0-linux-amd64.zip ; \ + elif [ $TARGETPLATFORM = "linux/arm/v7" ]; then curl -Lo /tmp/rclone.zip https://github.com/rclone/rclone/releases/download/v1.67.0/rclone-v1.67.0-linux-arm-v7.zip ; \ + elif [ $TARGETPLATFORM = "linux/arm64" ]; then curl -Lo /tmp/rclone.zip https://github.com/rclone/rclone/releases/download/v1.67.0/rclone-v1.67.0-linux-arm64.zip ; \ + elif [ $TARGETPLATFORM = "linux/ppc64le" ]; then curl -Lo /tmp/rclone.zip https://github.com/rclone/rclone/releases/download/v1.67.0/rclone-v1.67.0-linux-mipsle.zip ; \ else echo "no URL for $TARGETPLATFORM"; exit 1; fi && \ (cd /tmp && unzip rclone.zip) && \ rm /tmp/rclone.zip && \