|
@@ -1,4 +1,15 @@
|
|
|
FROM ubuntu:latest
|
|
|
+LABEL maintainer="fred.damstra@gmail.com"
|
|
|
+LABEL version="0.1"
|
|
|
+LABEL description="Docker image that updates a route53 zone record with the current IP (home grown dynip)"
|
|
|
+
|
|
|
+# Never prompt
|
|
|
+ARG DEBIAN_FRONTEND=noninteractive
|
|
|
+
|
|
|
+RUN apt update \
|
|
|
+ && apt install -y curl \
|
|
|
+ && rm -rf /var/lib/apt/lists/* \
|
|
|
+ && apt clean
|
|
|
|
|
|
COPY . /opt/update-route53
|
|
|
RUN chmod 755 /opt/update-route53/update-route53.sh \
|