From 5d882a1eb2b004d0fbe6125df9a89d9da183f00d Mon Sep 17 00:00:00 2001 From: kadma Date: Fri, 6 Sep 2024 21:05:20 -0500 Subject: [PATCH] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Actualización de rclone --- rclone-gui/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rclone-gui/Dockerfile b/rclone-gui/Dockerfile index 9a8194c..e3507f5 100644 --- a/rclone-gui/Dockerfile +++ b/rclone-gui/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu RUN apt update && apt upgrade -y && apt autoremove -y && apt install python3 python3-pip -y && apt install git nano wget -y -ENV URL_DESCARGA_RCLONE="https://downloads.rclone.org/v1.65.0/rclone-v1.65.0-linux-amd64.deb" +ENV URL_DESCARGA_RCLONE="https://downloads.rclone.org/v1.67.0/rclone-v1.67.0-linux-amd64.deb" EXPOSE 5572 @@ -10,7 +10,7 @@ WORKDIR /app RUN wget $URL_DESCARGA_RCLONE -RUN dpkg -i rclone-v1.65.0-linux-amd64.deb +RUN dpkg -i rclone-v1.67.0-linux-amd64.deb ENV USER_RCLONE=adm PASSWORD_RCLONE=pass