networking: Add jq, update rclone
This commit is contained in:
parent
18e5973030
commit
20d5bf8ea3
10
networking
10
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 && \
|
||||
|
|
Loading…
Reference in New Issue