forked from kubectyl/kuber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
31 lines (25 loc) · 771 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Stage 1 (Build)
FROM golang:1.23-alpine AS builder
ARG VERSION
RUN apk add --update --no-cache git make
WORKDIR /app/
COPY go.mod go.sum /app/
RUN go mod download
COPY . /app/
RUN CGO_ENABLED=0 go build \
-ldflags="-s -w -X github.com/kubectyl/kuber/system.Version=$VERSION" \
-v \
-trimpath \
-o kuber \
kuber.go
# RUN echo "ID=\"distroless\"" > /etc/os-release
# Stage 2 (Final)
# FROM gcr.io/distroless/static:latest
FROM busybox:latest
ENV TZ=UTC
ENV SSL_CERT_DIR=/etc/ssl/certs
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /etc/os-release /etc/os-release
COPY --from=builder /app/kuber /usr/bin/
CMD [ "/usr/bin/kuber", "--config", "/etc/kubectyl/config.yml" ]
EXPOSE 8080