6 lines
141 B
Docker
6 lines
141 B
Docker
|
from alpine:latest
|
||
|
RUN apk add --no-cache curl
|
||
|
COPY . opt
|
||
|
RUN crontab /opt/crontab
|
||
|
RUN chmod +x /opt/entrypoint.sh
|
||
|
CMD ["/opt/entrypoint.sh"]
|