Skip to content

Commit

Permalink
helm
Browse files Browse the repository at this point in the history
  • Loading branch information
some-natalie committed Nov 16, 2024
1 parent d423df3 commit 8ef01f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
5 changes: 1 addition & 4 deletions images/rootless-ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,7 @@ COPY images/software/kubectl.sh /kubectl.sh
RUN bash /kubectl.sh && rm /kubectl.sh

# Install helm
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
&& chmod 700 get_helm.sh \
&& ./get_helm.sh \
&& rm get_helm.sh
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

# Install Docker
RUN export DOCKER_ARCH=x86_64 \
Expand Down
5 changes: 1 addition & 4 deletions images/rootless-ubuntu-numbat.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,7 @@ COPY images/software/kubectl.sh /kubectl.sh
RUN bash /kubectl.sh && rm /kubectl.sh

# Install helm
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
&& chmod 700 get_helm.sh \
&& ./get_helm.sh \
&& rm get_helm.sh
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

# Install Docker
RUN export DOCKER_ARCH=x86_64 \
Expand Down
4 changes: 2 additions & 2 deletions images/wolfi.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ ARG DOTNET_VERSION=8
RUN addgroup -S runner && adduser -S runner -G runner

# Install software
RUN apk update \
&& apk add --no-cache \
RUN apk add --no-cache \
aspnet-${DOTNET_VERSION}-runtime \
bash \
build-base \
Expand All @@ -29,6 +28,7 @@ RUN apk update \
dumb-init \
git \
gh \
helm \
icu \
jq \
krb5-libs \
Expand Down

0 comments on commit 8ef01f3

Please sign in to comment.