FROM alpine: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)" RUN apk add --no-cache curl aws-cli bash COPY . /opt/aws-backup RUN chmod 755 /opt/aws-backup/aws-backup.sh \ && mkdir /source CMD ["/opt/aws-backup/aws-backup.sh"]