Files
docker-cron/Dockerfile
2022-08-14 00:48:34 +12:00

9 lines
129 B
Docker

FROM debian
RUN apt-get update && apt-get -y install cron
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]