blob: c8801c507b8d28376f822e03fd853c90d54844aa (
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
COPY entrypoint.sh /cron_entrypoint.sh
ENTRYPOINT ["bash"]
CMD ["/cron_entrypoint.sh"]
|