fix: enforce GOTOOLCHAIN=local in dockerfile

This commit is contained in:
KV-Tube Deployer 2026-03-24 22:54:41 +07:00
parent 6196c6174f
commit f2cbf102d2

View file

@ -1,5 +1,6 @@
# ---- Backend Builder ----
FROM golang:1.24-alpine AS backend-builder
ENV GOTOOLCHAIN=local
WORKDIR /app
RUN apk add --no-cache git gcc musl-dev
COPY backend/go.mod backend/go.sum ./