mirror of
https://github.com/beeyev/Mikrotik-RouterOS-automatic-backup-and-update.git
synced 2026-06-24 20:21:33 +00:00
10 lines
196 B
Text
10 lines
196 B
Text
|
|
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"]
|