initial commit
This commit is contained in:
21
Dockerfile
Normal file
21
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user