fix: enforce GOTOOLCHAIN=local in dockerfile
Some checks are pending
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
CI / build (push) Blocked by required conditions

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

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 ./