Bump version
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-24 12:01:49 +03:00
parent 56848c73fd
commit 08c1a170dc
6 changed files with 5 additions and 13 deletions

View File

@@ -2,14 +2,6 @@ FROM golang:1.24-alpine AS builder
ARG SOURCE_VERSION
ARG SOURCE_COMMIT
ARG GOPROXY
ARG GONOSUMDB
ENV GOPROXY=${GOPROXY}
ENV GONOSUMDB=${GONOSUMDB}
RUN go env GOPROXY
RUN test -n "$GOPROXY" || (echo "GOPROXY not set" && exit 1)
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download