Skip to content

Commit 2513a12

Browse files
Unquote and ignore warning
* Quoting $(...) causes the command execution to fail. Thus, ignoring the warning instead.
1 parent 43a7946 commit 2513a12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-support/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ RUN chmod a+x pkg-resolver/install-common-pkgs.sh pkg-resolver/resolve.py \
4242
######
4343
# Install packages from apt
4444
######
45-
# hadolint ignore=DL3008
45+
# hadolint ignore=DL3008,SC2046
4646
RUN apt-get -q update \
4747
&& apt-get -q install -y --no-install-recommends python3 \
48-
&& apt-get -q install -y --no-install-recommends "$(pkg-resolver/resolve.py ubuntu:focal)" \
48+
&& apt-get -q install -y --no-install-recommends $(pkg-resolver/resolve.py ubuntu:focal) \
4949
&& apt-get clean \
5050
&& rm -rf /var/lib/apt/lists/*
5151

0 commit comments

Comments
 (0)