Files
Onedrive/rclone-gui/Dockerfile
kadma 5d882a1eb2 Update Dockerfile
Actualización de rclone
2024-09-06 21:05:20 -05:00

22 lines
508 B
Docker

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.67.0/rclone-v1.67.0-linux-amd64.deb"
EXPOSE 5572
WORKDIR /app
RUN wget $URL_DESCARGA_RCLONE
RUN dpkg -i rclone-v1.67.0-linux-amd64.deb
ENV USER_RCLONE=adm PASSWORD_RCLONE=pass
RUN wget https://raw.githubusercontent.com/kadma/pruebasdocker/main/rclone-gui/test.sh
RUN chmod +x test.sh
ENTRYPOINT ./test.sh