Skip to content

Commit

Permalink
#16 simplifying and removing redundant removes
Browse files Browse the repository at this point in the history
  • Loading branch information
nasilc committed Sep 29, 2023
1 parent 62ddcb5 commit 3773d31
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ RUN curl -LO "https://dl.k8s.io/release/v${KUBE_VERSION}/bin/linux/amd64/kubectl
mv kubectl /usr/local/bin

ARG SOPS_VERSION=3.8.0
RUN curl -L "https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.amd64" -o "/tmp/sops.linux.amd64" && \
mv "/tmp/sops.linux.amd64" /usr/local/bin/sops && \
chmod +x /usr/local/bin/sops && \
rm -rf "/tmp/sops.linux.amd64"
RUN curl -L "https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.amd64" -o "/usr/local/bin/sops" && \
chmod +x /usr/local/bin/sops

FROM python:3-slim-bullseye

Expand Down

0 comments on commit 3773d31

Please sign in to comment.