aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: d9426bf5245813b261d1d42716a37da1f1eb9731 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:22.04
ENV TZ=Europe/London
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update -y
RUN apt-get install -y python3-pip iputils-ping cron git tzdata
COPY entrypoint.sh /cron_entrypoint.sh

ENTRYPOINT ["bash"]
CMD ["/cron_entrypoint.sh"]