docker-cron/Dockerfile

9 lines
129 B
Docker
Raw Permalink Normal View History

2022-08-13 12:48:34 +00:00
FROM debian
RUN apt-get update && apt-get -y install cron
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]