Files
voice-assistant/Dockerfile
Billy D. d891140817
Some checks failed
CI / Lint (push) Successful in 2m58s
CI / Test (push) Successful in 2m58s
CI / Release (push) Successful in 1m34s
CI / Docker Build & Push (push) Failing after 8m30s
CI / Notify (push) Successful in 1s
chore: bump handler-base to v0.1.5, add netrc secret mount to Dockerfile
2026-02-20 18:17:00 -05:00

27 lines
581 B
Docker

# Build stage
FROM golang:1.25-alpine AS builder
WORKDIR /app
RUN apk add --no-cache ca-certificates git
ENV GOPRIVATE=git.daviestechlabs.io
ENV GONOSUMCHECK=git.daviestechlabs.io
COPY go.mod go.sum ./
RUN --mount=type=secret,id=netrc,target=/root/.netrc go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOAMD64=v3 go build -ldflags="-w -s" -o /voice-assistant .
# Runtime stage
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /voice-assistant /voice-assistant
USER 65534:65534
ENTRYPOINT ["/voice-assistant"]