Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mauwii committed Oct 13, 2023
1 parent 79a7375 commit 46135b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion linux/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ RUN apt-get -y update \
&& rustup component add rustfmt clippy \
&& cargo_tools=() \
&& while IFS='' read -r pkg; do cargo_tools+=("$pkg"); done < <(printf "%s\n" "${CARGO_PACKAGES}" | jq -r '.[]') \
&& cargo install "${cargo_tools[@]}"
&& cargo install "${cargo_tools[@]}" \
&& apt-get clean \
&& rm -rf /etc/apt/sources.list.d/* \
&& rm -rf /var/lib/apt/lists/*

FROM base as act-base

Expand Down

0 comments on commit 46135b7

Please sign in to comment.