removed go.sum from dockerfile as there are no external dependencies
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Leopold 2025-04-25 14:32:12 +02:00 committed by Ingwerpold
parent 48b349e843
commit 5f242218a2

View file

@ -2,7 +2,7 @@ FROM golang:latest AS build
WORKDIR /build
COPY go.mod go.sum ./
COPY go.mod ./
RUN go mod download