Skip to content

Commit 355412e

Browse files
committed
Properly deal with &&
1 parent 55bce58 commit 355412e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

devops/containers/ubuntu2204_intel_drivers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
77

88
ARG use_latest=true
99

10-
RUN sudo apt update && apt install -yqq wget
10+
RUN sudo apt update && sudo apt install -yqq wget
1111

1212
COPY scripts/get_release.py /
1313
COPY scripts/install_drivers.sh /

devops/containers/ubuntu2404_intel_drivers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive
77

88
ARG use_latest=true
99

10-
RUN sudo apt update && apt install -yqq wget
10+
RUN sudo apt update && sudo apt install -yqq wget
1111

1212
COPY scripts/get_release.py /
1313
COPY scripts/install_drivers.sh /

devops/containers/ubuntu2404_intel_drivers_igc_dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM $base_image:$base_tag
55

66
ENV DEBIAN_FRONTEND=noninteractive
77

8-
RUN sudo apt update && apt install -yqq libllvm14
8+
RUN sudo apt update && sudo apt install -yqq libllvm14
99

1010
COPY scripts/get_release.py /
1111
COPY scripts/install_drivers.sh /

0 commit comments

Comments
 (0)