diff --git a/build/Dockerfile b/build/Dockerfile index 80762175..1413f383 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,7 +1,7 @@ # ARG instructions do not create additional layers. Instead, next layers will # concatenate them. Also, we have to repeat ARG instructions in each build # stage that uses them. -ARG GOLANG_VERSION=1.26.2 +ARG GOLANG_VERSION=1.26.5 # ---------------------------------------------- # pdfcpu binary build stage @@ -11,7 +11,7 @@ ARG GOLANG_VERSION=1.26.2 FROM golang:$GOLANG_VERSION AS pdfcpu-binary-stage # See https://github.com/pdfcpu/pdfcpu/releases. -ARG PDFCPU_VERSION=v0.12.0 +ARG PDFCPU_VERSION=v0.13.0 ENV CGO_ENABLED=0 # Define the working directory outside of $GOPATH (we're using go modules).