-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow helm non-root install (#180)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
- Loading branch information
Showing
2 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
ARG IMAGE=containerbase/buildpack | ||
FROM ${IMAGE} as build | ||
|
||
USER 1000 | ||
|
||
# renovate: datasource=github-releases lookupName=helm/helm | ||
RUN install-tool helm v3.7.1 | ||
|
||
USER 1000 | ||
|
||
RUN set -ex; helm version | ||
|
||
RUN set -ex; \ | ||
helm repo add stable https://charts.helm.sh/stable; \ | ||
helm repo update | ||
|
||
|
||
SHELL [ "/bin/sh", "-c" ] | ||
|
||
RUN helm version |