forked from kyma-incubator/reconciler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.cr
43 lines (30 loc) · 1.06 KB
/
Dockerfile.cr
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
# Istioctl source images
FROM istio/istioctl:1.11.2 AS istio-1_11_2
# Build image
FROM golang:1.17.0-alpine3.13 AS build
ENV SRC_DIR=/go/src/github.com/kyma-incubator/reconciler
ADD . $SRC_DIR
RUN mkdir /user && \
echo 'appuser:x:2000:2000:appuser:/:' > /user/passwd && \
echo 'appuser:x:2000:' > /user/group
WORKDIR $SRC_DIR
COPY configs /configs
RUN CGO_ENABLED=0 go build -o /bin/reconciler -ldflags '-s -w' ./cmd/reconciler/main.go
# Get latest CA certs
FROM alpine:latest as certs
RUN apk --update add ca-certificates
# Final image
FROM scratch
LABEL [email protected]:kyma-incubator/reconciler.git
# Add SSL certificates
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
# Add system users
COPY --from=build /user/group /user/passwd /etc/
# Add reconciler
COPY --from=build /bin/reconciler /bin/reconciler
COPY --from=build /configs/ /configs/
# Add istioctl tools
COPY --from=istio-1_11_2 /usr/local/bin/istioctl /bin/istioctl-1.11.2
ENV ISTIOCTL_PATH=/bin/istioctl-1.11.2
USER appuser:appuser
CMD ["/bin/reconciler"]