UNCLASSIFIED

You need to sign in or sign up before continuing.
Dockerfile 343 Bytes
Newer Older
Michael Simmons's avatar
Michael Simmons committed
1 2 3 4
ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/google/distroless/static
ARG BASE_TAG=latest

5
FROM gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller:v0.27.3 as build
Michael Simmons's avatar
Michael Simmons committed
6 7 8 9 10 11 12 13 14

FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}

COPY --from=build /ko-app /ko-app

USER 1001

HEALTHCHECK NONE

sean.melissari's avatar
sean.melissari committed
15
ENTRYPOINT ["/ko-app/controller"]