winbox/Dockerfile
Merith ec80d0d387
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 25s
include winbox
2025-06-05 06:23:45 +00:00

11 lines
No EOL
372 B
Docker

# use the base VNC image
FROM git.merith.xyz/gns3/base-vnc:latest
## START setting your image here
RUN apk add --no-cache wine
RUN wget -O /winbox64.exe https://download.mikrotik.com/routeros/winbox/3.42/winbox64.exe
## STOP setting up your image here
# DO NOT REMOVE AND DO NOT ADD AN "ENTRYPOINT" COMMAND
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh