Skip to content

Commit

Permalink
Use CURL instead of wget.
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-kpyc committed Oct 25, 2019
1 parent 6fcbceb commit 31a2cf3
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 @@ -35,8 +35,8 @@ RUN apk add --no-cache git=2.22.0-r0 \
&& helm plugin install https://github.com/futuresimple/helm-secrets --version 2.0.2

# kubeseal
RUN wget https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.9.2/kubeseal-linux-amd64 \
&& install -m 755 kubeseal-linux-amd64 /usr/local/bin/kubeseal
RUN curl -L https://github.com/bitnami-labs/sealed-secrets/releases/download/v0.9.2/kubeseal-linux-amd64 --output kubeseal \
&& install -m 755 kubeseal /usr/local/bin/kubeseal

COPY docker-entrypoint.sh /aws/docker-entrypoint.sh

Expand Down

0 comments on commit 31a2cf3

Please sign in to comment.