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
2 changes: 2 additions & 0 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:

- name: package cleanup
uses: dataaxiom/ghcr-cleanup-action@v1
continue-on-error: true # action doesn't fail when this step fails
if: ${{ github.actor != 'dependabot' }}
with:
owner: nuts-foundation
Expand All @@ -91,6 +92,7 @@ jobs:

- name: package cleanup dependabot
uses: dataaxiom/ghcr-cleanup-action@v1
continue-on-error: true # action doesn't fail when this step fails
if: ${{ github.actor == 'dependabot' }}
with:
owner: nuts-foundation
Expand Down
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang alpine
FROM golang:1.23.2-alpine AS builder
FROM golang:1.23.4-alpine AS builder

ARG TARGETARCH
ARG TARGETOS
Expand Down Expand Up @@ -28,12 +28,11 @@ COPY . .
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go build -ldflags="-w -s -X 'github.com/nuts-foundation/nuts-node/core.GitCommit=${GIT_COMMIT}' -X 'github.com/nuts-foundation/nuts-node/core.GitBranch=${GIT_BRANCH}' -X 'github.com/nuts-foundation/nuts-node/core.GitVersion=${GIT_VERSION}'" -o /opt/nuts/nuts

# alpine
FROM alpine:3.20.3
FROM alpine:3.21.2
RUN apk update \
&& apk add --no-cache \
tzdata \
curl \
&& update-ca-certificates
curl
COPY --from=builder /opt/nuts/nuts /usr/bin/nuts

HEALTHCHECK --start-period=30s --timeout=5s --interval=10s \
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/nuts-foundation/nuts-node

go 1.23
// 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

require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
Expand Down
Loading