mirror of
https://github.com/cmur2/dyndnsd.git
synced 2024-12-22 10:54:23 +01:00
docker: update Alpine tools to fix openssl vulnerability
This commit is contained in:
parent
1a59d6f79a
commit
4b3302bb49
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.4.5
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.4 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
|
||||||
## 3.4.4 (August 26th, 2021)
|
## 3.4.4 (August 26th, 2021)
|
||||||
|
|
||||||
OTHER:
|
OTHER:
|
||||||
|
2
Rakefile
2
Rakefile
@ -26,7 +26,7 @@ hadolint_version = 'v2.7.0'
|
|||||||
|
|
||||||
desc 'Run hadolint for Dockerfile linting'
|
desc 'Run hadolint for Dockerfile linting'
|
||||||
task :hadolint do
|
task :hadolint do
|
||||||
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3017 --ignore DL3018 - < docker/Dockerfile"
|
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3018 - < docker/Dockerfile"
|
||||||
end
|
end
|
||||||
|
|
||||||
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
||||||
|
@ -5,7 +5,7 @@ EXPOSE 5353 8080
|
|||||||
ARG DYNDNSD_VERSION
|
ARG DYNDNSD_VERSION
|
||||||
|
|
||||||
RUN apk --no-cache add openssl ca-certificates && \
|
RUN apk --no-cache add openssl ca-certificates && \
|
||||||
apk upgrade apk-tools && \
|
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} && \
|
||||||
|
@ -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 && \
|
||||||
|
Loading…
Reference in New Issue
Block a user