We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa452e2 commit fe3b5cbCopy full SHA for fe3b5cb
Dockerfile
@@ -31,9 +31,9 @@ RUN set -ex; \
31
32
# install rclone script
33
RUN set -eux; \
34
- curl https://github.com/rclone/rclone/releases/download/${RCLONE_VERSION}/rclone-${RCLONE_VERSION}-linux-amd64.zip --output rclone.zip; \
35
- unzip rclone.zip; \
36
- cd rclone-*-linux-amd64; \
+ curl https://github.com/rclone/rclone/releases/download/${RCLONE_VERSION}/rclone-${RCLONE_VERSION}-linux-amd64.zip -LO; \
+ unzip rclone-${RCLONE_VERSION}-linux-amd64.zip; \
+ cd rclone-${RCLONE_VERSION}-linux-amd64; \
37
cp rclone /usr/bin/; \
38
chown root:root /usr/bin/rclone; \
39
chmod 755 /usr/bin/rclone; \
0 commit comments