From 882fcbe13b9ab1a559d0668dc001da358c5091c2 Mon Sep 17 00:00:00 2001 From: Christian Nicolai Date: Thu, 26 Aug 2021 08:38:04 +0200 Subject: [PATCH] docker: update Alpine tools to fix apk-tools vulnerability (try #2) --- CHANGELOG.md | 6 ++++++ docker/Dockerfile | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bca0c13..fcb9443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 3.4.4 + +OTHER: + +- re-release 3.4.3 to rebuild Docker image with security vulnerabilities fixes + ## 3.4.3 (August 20th, 2021) OTHER: diff --git a/docker/Dockerfile b/docker/Dockerfile index 499f28a..6fe6baa 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,6 +5,7 @@ EXPOSE 5353 8080 ARG DYNDNSD_VERSION RUN apk --no-cache add openssl ca-certificates && \ + apk upgrade apk-tools && \ apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \ apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \ gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \