Skip to content

Commit

Permalink
set file ownership explicitly in dockerfile to avoid umask dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kd7lxl committed Jul 25, 2023
1 parent 908cc42 commit d2f5d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
FROM quay.io/operator-framework/helm-operator:v1.28.1

ENV HOME=/opt/helm
COPY watches.yaml ${HOME}/watches.yaml
COPY helm-charts ${HOME}/helm-charts
COPY --chmod=555 watches.yaml ${HOME}/watches.yaml
COPY --chmod=555 helm-charts ${HOME}/helm-charts
WORKDIR ${HOME}

0 comments on commit d2f5d40

Please sign in to comment.