diff --git a/Dockerfile b/Dockerfile index 9d2117f..609c5c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 . .