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
2024-02-24 00:00:34 +01:00

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