Files
mindforge/mindforge.cronjob/Dockerfile
Jose Henrique fe24b6771b
Some checks failed
Mindforge Cronjob Build and Deploy / Build Mindforge Cronjob Image (push) Failing after 21s
Mindforge Cronjob Build and Deploy / Deploy Mindforge Cronjob (internal) (push) Has been skipped
trying to fix dockerfile
2026-03-13 22:12:31 -03:00

26 lines
795 B
Docker

# Start from the official Golang image for building
FROM --platform=$BUILDPLATFORM golang:1.22-alpine AS builder
ARG TARGETARCH
ARG TARGETOS
# Install CA certificates in the builder (runs natively, no QEMU needed)
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
# Build statically for Linux
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o mindforge-cronjob main.go
# Use scratch to avoid QEMU: no foreign-arch commands to emulate
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /app/mindforge-cronjob /app/mindforge-cronjob
ENV GIT_REPOSITORY=""
ENV GEMINI_API_KEY=""
ENV OPENAI_API_KEY=""
ENV DISCORD_WEBHOOK_URL=""
ENV HAVEN_NOTIFY_URL=""
ENV SSH_PRIVATE_KEY=""
ENTRYPOINT ["/app/mindforge-cronjob"]