- Update Dockerfile to use Go 1.23 (was 1.21) - Add missing config package imports to executor, github integration, and sandbox modules - These fixes enable proper build for CHORUS Services Docker integration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
316 B
Docker
19 lines
316 B
Docker
FROM golang:1.23-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
RUN go build -o bzzz .
|
|
|
|
FROM alpine:latest
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /root/
|
|
|
|
COPY --from=builder /app/bzzz .
|
|
|
|
# Copy secrets directory for GitHub token access
|
|
VOLUME ["/secrets"]
|
|
|
|
CMD ["./bzzz"] |