-
Notifications
You must be signed in to change notification settings - Fork 137
/
planner.Dockerfile
60 lines (45 loc) · 1.44 KB
/
planner.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Build the manager binary
FROM golang:1.23 as builder
ARG TARGETARCH
ARG BUILD_SHA
ARG BUILD_VERSION
RUN apt-get update && apt-get install -y unzip
WORKDIR /workspace
# Copy API and its Go module
COPY api/ api/
# Copy tfctl and its Go module
COPY tfctl/ tfctl/
# Copy utils and its Go module
COPY utils/ utils/
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
# Copy the go source
COPY cmd/branch-planner cmd/branch-planner
COPY internal internal
# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \
go build \
-gcflags=all="-N -l" \
-ldflags "-X main.BuildSHA=${BUILD_SHA} -X main.BuildVersion=${BUILD_VERSION}" \
-a \
-o branch-planner \
./cmd/branch-planner
FROM alpine:3.20
LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"
ARG LIBCRYPTO_VERSION
RUN apk update && \
apk add --no-cache \
libcrypto3=${LIBCRYPTO_VERSION} \
libssl3=${LIBCRYPTO_VERSION} \
ca-certificates tini git openssh-client gnupg \
libretls \
busybox
COPY --from=builder /workspace/branch-planner /usr/local/bin/
RUN addgroup --gid 65532 -S controller && adduser --uid 65532 -S controller -G controller
USER 65532:65532
ENV GNUPGHOME=/tmp
ENTRYPOINT [ "/sbin/tini", "--", "branch-planner" ]