fix: install build-base for cgo secretapi image
Some checks are pending
check / secretapi (push) Waiting to run

This commit is contained in:
Joshua 2026-02-19 11:42:19 -08:00
parent 17015ffdf9
commit c96ec23bec

View File

@ -1,6 +1,7 @@
FROM golang:1.26-alpine AS build
WORKDIR /src
RUN apk add --no-cache build-base
COPY . .
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o /out/secretapi .