diff --git a/SIS_import/Dockerfile b/SIS_import/Dockerfile index 98a726e..7344232 100644 --- a/SIS_import/Dockerfile +++ b/SIS_import/Dockerfile @@ -11,7 +11,10 @@ RUN apt-get update && \ # Download latest from https://rclone.org/downloads/ ENV RCLONE_VER=v1.57.0 -RUN apt install rclone -y +RUN ARCH=`dpkg --print-architecture`; \ + curl -sLO https://downloads.rclone.org/${RCLONE_VER}/rclone-${RCLONE_VER}-linux-${ARCH}.deb && \ + dpkg -i rclone-${RCLONE_VER}-linux-${ARCH}.deb && \ + rm rclone-${RCLONE_VER}-linux-${ARCH}.deb # Precache Bundle COPY Gemfile* /tmp/