Create Dockerfile

This commit is contained in:
kadma
2024-01-21 12:21:22 -05:00
committed by GitHub
parent edd5e30d07
commit 1f948a6c65

17
onedrive/cron/Dockerfile Normal file
View File

@@ -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