4 lines
143 B
Docker
4 lines
143 B
Docker
FROM alpine:3
|
|
ADD https://github.com/sabhiram/go-wol/releases/download/v2.0.1/wol_linux_amd64 /bin/wol
|
|
RUN chmod +x /bin/wol
|
|
RUN /bin/wol help
|