Merge "Update dependencies"
diff --git a/Changes b/Changes
index 8886337..2655e4a 100755
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.2.3 2025-06-15
+ - Update dependencies
+
0.2.2 2024-11-14
- Don't stop on CSV parsing errors
diff --git a/Dockerfile b/Dockerfile
index 7b2d1d1..60c805d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# Build stage
-FROM golang:latest as build
+FROM golang:latest AS build
RUN apt-get update && \
apt-get upgrade -y ca-certificates
@@ -7,7 +7,7 @@
WORKDIR /src
COPY go.mod go.sum ./
-RUN go mod download
+RUN go get -u all
COPY . /src
@@ -20,7 +20,7 @@
--trimpath \
-o /src/external-big .
-FROM gruebel/upx:latest as upx
+FROM gruebel/upx:latest AS upx
COPY --from=build /src/external-big /external-big
diff --git a/go.mod b/go.mod
index 502f1ea..777e8f8 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/KorAP/Kalamar-Plugin-ExternalResources
-go 1.24.0
+go 1.25.4
// replace github.com/golang/protobuf => google.golang.org/protobuf v1.31.0