blob: 67250af9151e0e4af397d6eeb2fc972ed936777a [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 Naserda994232024-04-13 12:34:01 -04006ARG KUBERNETES_ENTRYPOINT_GIT_REF=4fbcf7ce324dc66e78480f73035e31434cfea1e8
7ADD https://opendev.org/airship/kubernetes-entrypoint.git#${KUBERNETES_ENTRYPOINT_GIT_REF} /src
8WORKDIR /src
9RUN CGO_ENABLED=0 GOOS=linux go build -o /main
10
11FROM scratch
12COPY --from=build /main /kubernetes-entrypoint
13USER 65534
14ENTRYPOINT ["/kubernetes-entrypoint"]