orden
This commit is contained in:
21
rclone-gui/Dockerfile
Normal file
21
rclone-gui/Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
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"
|
||||
|
||||
EXPOSE 5572
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN wget $URL_DESCARGA_RCLONE
|
||||
|
||||
RUN dpkg -i rclone-v1.65.0-linux-amd64.deb
|
||||
|
||||
ENV USER_RCLONE=adm PASSWORD_RCLONE=pass
|
||||
|
||||
RUN wget https://raw.githubusercontent.com/kadma/pruebasdocker/main/test.sh
|
||||
|
||||
RUN chmod +x test.sh
|
||||
|
||||
ENTRYPOINT ./test.sh
|
||||
Reference in New Issue
Block a user