This repository has been archived on 2025-07-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wohn-hh-checker/Dockerfile
socrates@luxemburg ae062c1e04 initial commit
2023-12-22 21:04:08 +01:00

21 lines
439 B
Docker

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" ]