Merge pull request 'fix: Build all required binaries in Docker image' (#21) from fix/docker-binaries into main
CI / CI (push) Successful in 4m30s

This commit was merged in pull request #21.
This commit is contained in:
2026-09-12 20:40:35 +00:00
+6 -8
View File
@@ -5,16 +5,14 @@ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . . COPY . .
# Re-use CI-built binary if present, otherwise build # Build all binaries
ARG BINARY_PATH= RUN CGO_ENABLED=0 GOOS=linux go build -o worker ./cmd/worker && \
RUN if [ -n "$BINARY_PATH" ] && [ -f "$BINARY_PATH" ]; then \ CGO_ENABLED=0 GOOS=linux go build -o poimen-workflow-runner ./cmd/workflow-runner && \
cp "$BINARY_PATH" worker; \ CGO_ENABLED=0 GOOS=linux go build -o poimen-worker ./cmd/starter
else \
CGO_ENABLED=0 GOOS=linux go build -o worker ./cmd/worker; \
fi
FROM alpine:3.20 FROM alpine:3.20
RUN apk --no-cache add ca-certificates RUN apk --no-cache add ca-certificates
WORKDIR /app WORKDIR /app
COPY --from=builder /app/worker . COPY --from=builder /app/worker .
ENTRYPOINT ["./worker"] COPY --from=builder /app/poimen-workflow-runner .
COPY --from=builder /app/poimen-worker .