16 lines
604 B
Docker
16 lines
604 B
Docker
FROM golang:1.22-alpine AS builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN go build -o kforge .
|
|
|
|
FROM alpine:3.19
|
|
COPY --from=builder /app/kforge /usr/local/bin/kforge
|
|
RUN apk add --no-cache curl docker-cli && \
|
|
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
|
|
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \
|
|
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |