Comit Inicial

This commit is contained in:
2025-12-20 19:11:15 -05:00
commit 1768a6a2f9
4 changed files with 39 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
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.72.1/rclone-v1.72.1-linux-amd64.deb"
EXPOSE 5572
WORKDIR /app
RUN wget $URL_DESCARGA_RCLONE
RUN dpkg -i rclone-v1.72.1-linux-amd64.deb
RUN wget https://raw.githubusercontent.com/kadma/pruebasdocker/main/rclone-gui/test.sh
RUN chmod +x test.sh
ENTRYPOINT ./test.sh