mirror of
https://github.com/beeyev/Mikrotik-RouterOS-automatic-backup-and-update.git
synced 2026-06-23 11:41:33 +00:00
9 lines
196 B
Docker
9 lines
196 B
Docker
FROM alpine:3.23
|
|
|
|
RUN apk add --no-cache openssh-client
|
|
|
|
COPY routeros-init.sh /usr/local/bin/routeros-init
|
|
|
|
RUN chmod +x /usr/local/bin/routeros-init
|
|
|
|
ENTRYPOINT ["/usr/local/bin/routeros-init"]
|