Skip to content

Commit

Permalink
update min go version and cleanup dockerfile (#3670)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsn authored Jan 28, 2025
1 parent d53abae commit bf2ebf9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang alpine
FROM golang:1.23.4-alpine as builder
FROM golang:1.23.5-alpine as builder

ARG TARGETARCH
ARG TARGETOS
Expand All @@ -10,11 +10,7 @@ ARG GIT_VERSION=undefined

LABEL maintainer="[email protected]"

RUN apk update \
&& update-ca-certificates

ENV GO111MODULE on
ENV GOPATH /
ENV GOPATH=/

RUN mkdir /opt/nuts && cd /opt/nuts
COPY go.mod .
Expand Down
10 changes: 10 additions & 0 deletions docs/pages/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Release notes
#############

*************************
Hazelnut update (v5.4.14)
*************************

Release date: 2025-01-28

- Update minimal GO version to 1.23.5 to fix vulnerabilities.

**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.13...v5.4.14

*************************
Hazelnut update (v5.4.13)
*************************
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/nuts-foundation/nuts-node

// This is the minimal version, the actual go version is determined by the images in the Dockerfile
// This version is used in automated tests such as the 'Scheduled govulncheck' action
go 1.23.4
go 1.23.5

require (
github.com/alicebob/miniredis/v2 v2.33.0
Expand Down

0 comments on commit bf2ebf9

Please sign in to comment.