6 lines
142 B
Docker
6 lines
142 B
Docker
FROM alpine
|
|
MAINTAINER Alper Kanat <tunix@raptiye.org>
|
|
RUN apk --no-cache add curl jq
|
|
COPY dyndns.sh /
|
|
USER nobody
|
|
ENTRYPOINT exec /dyndns.sh
|