Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
isindir committed Feb 10, 2024
1 parent 005c0b3 commit 00cffe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN git config --global user.email "[email protected]" \
WORKDIR /root
COPY .tool-versions .

RUN awk '$0 !~ /^#/ {print $1}' .tool-versions|xargs -i asdf plugin add {} \
RUN awk '$0 !~ /^#/ {print $1}' .tool-versions|xargs -I{} asdf plugin add {} \

Check warning on line 32 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

[hadolint] Dockerfile#L32 <DL4006>(https://github.com/hadolint/hadolint/wiki/DL4006)

Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check
Raw output
message:"Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check"  location:{path:"Dockerfile"  range:{start:{line:32  column:1}}}  severity:WARNING  source:{name:"hadolint"  url:"https://github.com/hadolint/hadolint"}  code:{value:"DL4006"  url:"https://github.com/hadolint/hadolint/wiki/DL4006"}
&& asdf install && asdf reshim
ENV PATH "/root/.asdf/shims:/root/.asdf/bin:$PATH"

Expand Down

0 comments on commit 00cffe9

Please sign in to comment.