Skip to content

Commit

Permalink
Fix missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
sebt3 committed Aug 30, 2024
1 parent 2483a13 commit 46c1960
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update \
&& curl -sL "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/${ARCHITECTURE}/kubectl" -o /usr/local/bin/kubectl \
&& echo "$(curl -sL "https://dl.k8s.io/${KUBECTL_VERSION}/bin/linux/${ARCHITECTURE}/kubectl.sha256") /usr/local/bin/kubectl" | sha256sum --check \
&& curl -sL "https://get.helm.sh/helm-${HELM_VERSION}-linux-${ARCHITECTURE}.tar.gz" |tar --wildcards -C /usr/local/bin/ --strip-components=1 -xzf - */helm \
&& curl -sL "https://github.com/opentofu/opentofu/releases/download/v${TF_VERSION}/tofu_${TF_VERSION}_linux_${ARCHITECTURE}.tar.gz |tar -C /usr/local/bin/ -xzf - tofu \
&& curl -sL "https://github.com/opentofu/opentofu/releases/download/v${TF_VERSION}/tofu_${TF_VERSION}_linux_${ARCHITECTURE}.tar.gz" |tar -C /usr/local/bin/ -xzf - tofu \
&& ln -sf /usr/local/bin/tofu /usr/local/bin/terraform \
&& chmod 755 /usr/local/bin/kubectl /usr/local/bin/helm /usr/local/bin/tofu \
&& mkdir -p /var/lib/vynil/keys /nonexistent \
Expand Down
2 changes: 1 addition & 1 deletion dist/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update \
&& curl -sL "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/${ARCHITECTURE}/kubectl" -o /usr/local/bin/kubectl \
&& echo "$(curl -sL "https://dl.k8s.io/${KUBECTL_VERSION}/bin/linux/${ARCHITECTURE}/kubectl.sha256") /usr/local/bin/kubectl" | sha256sum --check \
&& curl -sL "https://get.helm.sh/helm-${HELM_VERSION}-linux-${ARCHITECTURE}.tar.gz" |tar --wildcards -C /usr/local/bin/ --strip-components=1 -xzf - */helm \
&& curl -sL "https://github.com/opentofu/opentofu/releases/download/v${TF_VERSION}/tofu_${TF_VERSION}_linux_${ARCHITECTURE}.tar.gz |tar -C /usr/local/bin/ -xzf - tofu \
&& curl -sL "https://github.com/opentofu/opentofu/releases/download/v${TF_VERSION}/tofu_${TF_VERSION}_linux_${ARCHITECTURE}.tar.gz" |tar -C /usr/local/bin/ -xzf - tofu \
&& ln -sf /usr/local/bin/tofu /usr/local/bin/terraform \
&& chmod 755 /usr/local/bin/kubectl /usr/local/bin/helm /usr/local/bin/tofu
COPY --from=builder /usr/src/dist/target/release/dist /usr/bin/dist
Expand Down

0 comments on commit 46c1960

Please sign in to comment.