blob: be8fa106e31b5179d9c189662741c0c9e5feb791 [file] [log] [blame]
Mohammed Naser564caa82025-01-18 15:49:44 -05001# SPDX-FileCopyrightText: © 2025 VEXXHOST, Inc.
2# SPDX-License-Identifier: GPL-3.0-or-later
Mohammed Nasere786d962024-06-26 01:08:34 -04003# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
Mohammed Naser37694382024-04-02 21:11:31 -04004
Mohammed Naser564caa82025-01-18 15:49:44 -05005FROM golang AS build
Mohammed Naserf8a5f882025-03-24 17:13:41 +00006# renovate: name=airship/kubernetes-entrypoint repo=https://opendev.org/airship/kubernetes-entrypoint.git branch=master
Mohammed Naser49aa2332025-02-17 16:53:31 -05007ARG KUBERNETES_ENTRYPOINT_GIT_REF=df2f40f3dec3aca3e648f4f351ff5ccfbd659b59
Mohammed Naserda994232024-04-13 12:34:01 -04008ADD https://opendev.org/airship/kubernetes-entrypoint.git#${KUBERNETES_ENTRYPOINT_GIT_REF} /src
9WORKDIR /src
10RUN CGO_ENABLED=0 GOOS=linux go build -o /main
11
12FROM scratch
13COPY --from=build /main /kubernetes-entrypoint
14USER 65534
15ENTRYPOINT ["/kubernetes-entrypoint"]