This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch move-labels-to-end in repository https://gitbox.apache.org/repos/asf/airflow-helm-unittest.git
commit 6de8941f71e0acdf4f6ed5ab2e7154c9d9bf08ba Author: Jarek Potiuk <[email protected]> AuthorDate: Sat Jul 4 17:36:31 2020 +0200 Move labels to end --- Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46d26a0..2890e14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,12 +24,6 @@ ARG HELMUNITTEST_VERSION ARG AIRFLOW_HELMUNITTEST_VERSION ARG COMMIT_SHA -LABEL org.apache.airflow.component="helm-unittest" -LABEL org.apache.airflow.airflow_helm_unittest.version="${AIRFLOW_HELMUNITTEST_VERSION}" -LABEL org.apache.airflow.helm_unittest.version="${HELMUNITTEST_VERSION}" -LABEL org.apache.airflow.helm.version="${HELM_VERSION}" -LABEL org.apache.airflow.commit_sha="${COMMIT_SHA}" - COPY plugin.yaml install-binary.sh unittest go.mod main.go / @@ -39,4 +33,11 @@ RUN apk add --no-cache ca-certificates bash git openssh curl \ && chmod +x /usr/local/bin/helm \ && helm plugin install . +LABEL org.apache.airflow.component="helm-unittest" +LABEL org.apache.airflow.airflow_helm_unittest.version="${AIRFLOW_HELMUNITTEST_VERSION}" +LABEL org.apache.airflow.helm_unittest.version="${HELMUNITTEST_VERSION}" +LABEL org.apache.airflow.helm.version="${HELM_VERSION}" +LABEL org.apache.airflow.commit_sha="${COMMIT_SHA}" + CMD bash +
