Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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="wout.slakhorst@nuts.nl"

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
Loading