Remove the tini supervisor
Signed-off-by: Hidde Beydals <hidde@hhh.computer>
This commit is contained in:
parent
e546364a5b
commit
ba7edbdfe9
|
@ -33,13 +33,11 @@ RUN xx-go build -trimpath -a -o helm-controller main.go
|
||||||
|
|
||||||
FROM alpine:3.18
|
FROM alpine:3.18
|
||||||
|
|
||||||
# link repo to the GitHub Container Registry image
|
RUN apk add --no-cache ca-certificates \
|
||||||
LABEL org.opencontainers.image.source="https://github.com/fluxcd/helm-controller"
|
&& update-ca-certificates
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates tini
|
|
||||||
|
|
||||||
COPY --from=builder /workspace/helm-controller /usr/local/bin/
|
COPY --from=builder /workspace/helm-controller /usr/local/bin/
|
||||||
|
|
||||||
USER 65534:65534
|
USER 65534:65534
|
||||||
|
|
||||||
ENTRYPOINT [ "/sbin/tini", "--", "helm-controller" ]
|
ENTRYPOINT [ "helm-controller" ]
|
||||||
|
|
Loading…
Reference in New Issue