Skip to content

Commit

Permalink
delete stuff correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivatePuffin committed Nov 6, 2024
1 parent 9c6539b commit 8c526ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/apps/devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN curl -L "https://github.com/truecharts/public/releases/download/v${VERSION}/
RUN curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew-linux_amd64.tar.gz" \
&& tar zxvf "krew-linux_amd64.tar.gz" \
&& ./"krew-linux_amd64" install krew \
&& rm /tmp/clustertool.tar.gz
&& rm ./krew-linux_amd64.tar.gz

ENV PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"

Check warning on line 28 in containers/apps/devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Build (devcontainer)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$KREW_ROOT' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 28 in containers/apps/devcontainer/Dockerfile

View workflow job for this annotation

GitHub Actions / Build (devcontainer)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$HOME' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Expand Down

0 comments on commit 8c526ca

Please sign in to comment.