Skip to content

Commit

Permalink
Re-add missing wget step
Browse files Browse the repository at this point in the history
  • Loading branch information
firelegacy0 committed Nov 9, 2023
1 parent 6e5584f commit fa2fbda
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ LABEL org.label-schema.vcs-url="https://github.com/MrSaints/kubeseal-web" \

RUN apk add --no-cache bash ca-certificates curl jq wget nano

RUN wget https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.17.3/kubeseal-0.17.3-linux-${TARGETARCH}.tar.gz -O kubeseal.tar.gz \
&& tar -xzf kubeseal.tar.gz -C /tmp/ \
&& install -m 755 /tmp/kubeseal /usr/local/bin/kubeseal \
&& rm -rf kubeseal.tar.gz /tmp/kubeseal

COPY --from=build /build/kubeseal-web /kubeseal-web/run

ARG BUILD_VERSION
Expand Down

0 comments on commit fa2fbda

Please sign in to comment.