1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-08 08:33:56 +02:00

Compare commits

...

7 Commits

Author SHA1 Message Date
cn
d8dc69de8b release: 3.4.5 2021-08-26 21:24:48 +02:00
cn
4b3302bb49 docker: update Alpine tools to fix openssl vulnerability 2021-08-26 21:23:43 +02:00
Renovate Bot
1a59d6f79a project: update hadolint/hadolint to v2.7.0 2021-08-26 12:50:03 +02:00
Christian Nicolai
84429c066f release: 3.4.4 2021-08-26 08:45:44 +02:00
Christian Nicolai
9768424628 project: ignore hadolint rules deprecated upstream
- see 16099603b3
2021-08-26 08:43:32 +02:00
Christian Nicolai
882fcbe13b docker: update Alpine tools to fix apk-tools vulnerability (try #2) 2021-08-26 08:38:37 +02:00
Christian Nicolai
7580e87a30 docker: revert update Alpine tools to fix apk-tools vulnerability (ineffective)
This reverts commit b8fd42fd85.
2021-08-20 12:56:38 +02:00
5 changed files with 17 additions and 3 deletions

View File

@@ -1,5 +1,17 @@
# Changelog # Changelog
## 3.4.5 (August 26th, 2021)
OTHER:
- re-release 3.4.4 to rebuild Docker image with security vulnerabilities fixes
## 3.4.4 (August 26th, 2021)
OTHER:
- re-release 3.4.3 to rebuild Docker image with security vulnerabilities fixes
## 3.4.3 (August 20th, 2021) ## 3.4.3 (August 20th, 2021)
OTHER: OTHER:

View File

@@ -22,7 +22,7 @@ namespace :solargraph do
end end
# renovate: datasource=github-tags depName=hadolint/hadolint # renovate: datasource=github-tags depName=hadolint/hadolint
hadolint_version = 'v2.6.0' hadolint_version = 'v2.7.0'
desc 'Run hadolint for Dockerfile linting' desc 'Run hadolint for Dockerfile linting'
task :hadolint do task :hadolint do

View File

@@ -4,7 +4,8 @@ EXPOSE 5353 8080
ARG DYNDNSD_VERSION ARG DYNDNSD_VERSION
RUN apk --no-cache add openssl ca-certificates apk-tools && \ RUN apk --no-cache add openssl ca-certificates && \
apk upgrade apk-tools libcrypto1.1 libssl1.1 && \
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \ 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 && \ apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \ gem install --no-document dyndnsd -v ${DYNDNSD_VERSION} && \

View File

@@ -5,6 +5,7 @@ EXPOSE 5353 8080
COPY pkg/dyndnsd-*.gem /tmp/dyndnsd.gem COPY pkg/dyndnsd-*.gem /tmp/dyndnsd.gem
RUN apk --no-cache add openssl ca-certificates && \ RUN apk --no-cache add openssl ca-certificates && \
apk upgrade apk-tools libcrypto1.1 libssl1.1 && \
apk --no-cache add ruby ruby-etc ruby-io-console ruby-json ruby-webrick && \ 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 && \ apk --no-cache add --virtual .build-deps linux-headers ruby-dev build-base tzdata && \
gem install --no-document /tmp/dyndnsd.gem && \ gem install --no-document /tmp/dyndnsd.gem && \

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Dyndnsd module Dyndnsd
VERSION = '3.4.3' VERSION = '3.4.5'
end end