File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1+ 0.2.3 2025-06-15
2+ - Update dependencies
3+
140.2.2 2024-11-14
25 - Don't stop on CSV parsing errors
36
Original file line number Diff line number Diff line change 11# Build stage
2- FROM golang:latest as build
2+ FROM golang:latest AS build
33
44RUN apt-get update && \
55 apt-get upgrade -y ca-certificates
66
77WORKDIR /src
88
99COPY go.mod go.sum ./
10- RUN go mod download
10+ RUN go get -u all
1111
1212COPY . /src
1313
@@ -20,7 +20,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
2020 --trimpath \
2121 -o /src/external-big .
2222
23- FROM gruebel/upx:latest as upx
23+ FROM gruebel/upx:latest AS upx
2424
2525COPY --from=build /src/external-big /external-big
2626
Original file line number Diff line number Diff line change 11module github.com/KorAP/Kalamar-Plugin-ExternalResources
22
3- go 1.24.0
3+ go 1.25.4
44
55// replace github.com/golang/protobuf => google.golang.org/protobuf v1.31.0
66
You can’t perform that action at this time.
0 commit comments