9 lines
129 B
Docker
9 lines
129 B
Docker
|
FROM debian
|
||
|
|
||
|
RUN apt-get update && apt-get -y install cron
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
||
|
|