Skip to content

Commit

Permalink
Merge pull request tektoncd#731 from nikhil-thomas/fix/kodata-HEAD
Browse files Browse the repository at this point in the history
Minor fix: escape 'envsubst' using 'DOLLAR'
  • Loading branch information
openshift-ci[bot] authored Aug 18, 2021
2 parents 99217a5 + 8cf2d3e commit 5fe5fb1
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions openshift/ci-operator/Dockerfile-git.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN yum install --disableplugin=subscription-manager -y git openssh-clients

COPY ${bin} DOLLAR{HOME}/${bin}.orig
COPY uidwrapper DOLLAR{HOME}/${bin}
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/
COPY HEAD DOLLAR{KO_DATA_PATH}/
COPY refs DOLLAR{KO_DATA_PATH}/

RUN chgrp -R 0 DOLLAR{HOME} && \
chmod -R g=u DOLLAR{HOME} /etc/passwd
Expand Down
4 changes: 2 additions & 2 deletions openshift/ci-operator/Dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD DOLLAR{bin} /ko-app/DOLLAR{bin}
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/
COPY HEAD DOLLAR{KO_DATA_PATH}/
COPY refs DOLLAR{KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/${bin}"]
4 changes: 2 additions & 2 deletions openshift/ci-operator/tekton-images/controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/controller"]
4 changes: 2 additions & 2 deletions openshift/ci-operator/tekton-images/entrypoint/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/entrypoint"]
4 changes: 2 additions & 2 deletions openshift/ci-operator/tekton-images/git-init/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN yum install --disableplugin=subscription-manager -y git openssh-clients

COPY git-init ${HOME}/git-init.orig
COPY uidwrapper ${HOME}/git-init
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

RUN chgrp -R 0 ${HOME} && \
chmod -R g=u ${HOME} /etc/passwd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/imagedigestexporter"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/kubeconfigwriter"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/pullrequest-init"]
4 changes: 2 additions & 2 deletions openshift/ci-operator/tekton-images/webhook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

ENV KO_DATA_PATH=/kodata
ADD ${bin} /ko-app/${bin}
COPY HEAD /
COPY refs /
COPY HEAD ${KO_DATA_PATH}/
COPY refs ${KO_DATA_PATH}/

ENTRYPOINT ["/ko-app/webhook"]

0 comments on commit 5fe5fb1

Please sign in to comment.