bumped go version; disable download
Some checks failed
CodeQL / Analyze (go) (push) Has been cancelled
Docker / build (push) Has been cancelled
golangci-lint / lint (push) Has been cancelled

This commit is contained in:
Dmitrii Andreev
2025-04-07 19:21:20 +03:00
parent b4bed37a9f
commit 23f6f258d5

View File

@@ -1,13 +1,8 @@
# Stage 1: Build the application
FROM golang:1.22-alpine AS builder
FROM golang:1.24-alpine AS builder
WORKDIR /app
# Copy go mod and sum files
COPY go.mod go.sum ./
# Download dependencies
RUN go mod download
# Copy the source code
COPY . .