diff --git a/Dockerfile b/Dockerfile index 163aca4..a4cd3d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -98,7 +98,8 @@ RUN source /venv/bin/activate && \ RUN curl https://rclone.org/install.sh | bash # Install runpodctl -RUN wget https://github.com/runpod/runpodctl/releases/download/v1.13.0/runpodctl-linux-amd64 -O runpodctl && \ +ARG RUNPODCTL_VERSION="v1.14.2" +RUN wget "https://github.com/runpod/runpodctl/releases/download/${RUNPODCTL_VERSION}/runpodctl-linux-amd64" -O runpodctl && \ chmod a+x runpodctl && \ mv runpodctl /usr/local/bin