5 lines
79 B
Docker
5 lines
79 B
Docker
FROM golang:latest
|
|
WORKDIR /root
|
|
ADD ddns.bash .
|
|
CMD [ "/root/ddns.bash" ]
|