initial commit

This commit is contained in:
socrates@luxemburg
2023-12-22 21:04:08 +01:00
commit ae062c1e04
5 changed files with 60 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM debian:bookworm-slim
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt -y upgrade\
&& apt -y install \
cron \
tzdata \
&& 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" ]