From 1f948a6c657a29fc1c6ef2694e9ac0eaa3dd02a3 Mon Sep 17 00:00:00 2001 From: kadma Date: Sun, 21 Jan 2024 12:21:22 -0500 Subject: [PATCH] Create Dockerfile --- onedrive/cron/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 onedrive/cron/Dockerfile diff --git a/onedrive/cron/Dockerfile b/onedrive/cron/Dockerfile new file mode 100644 index 0000000..1413cdc --- /dev/null +++ b/onedrive/cron/Dockerfile @@ -0,0 +1,17 @@ +FROM ubuntu + +WORKDIR /app + +RUN apt update && apt upgrade -y && apt autoremove -y && apt install python3 python3-pip -y && apt install git nano wget -y + +COPY . . + +ENV PING_IP="1270.0.0.1" + +ENV TOKEN="token" + +ENV PASSWORD_WEB="pass" + +RUN chmod +x run.sh + +ENTRYPOINT ./run.sh