23 lines
450 B
Docker
23 lines
450 B
Docker
FROM debian:bookworm-slim
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update \
|
|
&& apt -y upgrade\
|
|
&& apt -y install \
|
|
cron \
|
|
tzdata \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN cp -r -f /usr/share/zoneinfo/Europe/Berlin /etc/localtime
|
|
|
|
COPY /wohn-hh-checker.sh /app/
|
|
COPY /run.sh /app/
|
|
COPY crontab /app/crontab
|
|
|
|
RUN chmod +x /app/run.sh
|
|
RUN chmod +x /app/wohn-hh-checker.sh
|
|
|
|
CMD [ "/app/run.sh" ]
|