Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
unneeded v, and changed tar paths
Browse files Browse the repository at this point in the history
  • Loading branch information
thesephirot authored Sep 8, 2021
1 parent d60d83d commit 34c872a
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 @@ -3,7 +3,7 @@ FROM argoproj/argocd@sha256:8d1d58ef963f615da97e0b2c54dbe243801d5e7198b98393ab36

# Switch to root for the ability to perform install
USER root
ARG GOPASS_VERSION="v1.12.8"
ARG GOPASS_VERSION="1.12.8"
# Install tools needed for your repo-server to retrieve & decrypt secrets, render manifests
# (e.g. curl, awscli, gpg, sops)
RUN apt-get update && \
Expand All @@ -15,7 +15,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
wget https://github.com/gopasspw/gopass/releases/download/v$GOPASS_VERSION/gopass-$GOPASS_VERSION-linux-amd64.tar.gz &&\
tar xf ./gopass-$GOPASS_VERSION-linux-amd64.tar.gz &&\
mv ./gopass-$GOPASS_VERSION-linux-amd64/gopass /usr/local/bin &&\
mv ./gopass /usr/local/bin &&\
rm -rf ./gopass-$GOPASS_VERSION-linux-amd64* &&\
chmod +x /usr/local/bin/gopass

Expand Down

0 comments on commit 34c872a

Please sign in to comment.