10 lines
168 B
Docker
10 lines
168 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update && apt-get install -y cron
|
|
|
|
COPY ./automation/crontab /var/spool/cron/crontabs/backend
|
|
|
|
#ENTRYPOINT [ "/bin/bash" ]
|
|
|
|
CMD ["cron", "-f"]
|