Update dockerfile to install build-base in the build stage

This commit is contained in:
2025-09-16 12:38:13 +03:30
parent 9bcdcf337d
commit ff1e9d810b

View File

@@ -7,7 +7,7 @@ FROM golang:1.25.1-alpine3.22 AS build-stage
WORKDIR /app
RUN apk update && apk add --no-cache gcc
RUN apk update && apk add --no-cache gcc build-base
COPY go.mod go.sum ./
RUN go mod download