37c61bea91
made transip GO dockerfile to run it on ARM (needs more tweaking, because now it only runs on ARM)
6 lines
133 B
Docker
6 lines
133 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache tzdata
|
|
COPY go-transip-dyndns /usr/bin
|
|
CMD ["/usr/bin/go-transip-dyndns", "update", "-k"]
|