Skip to content

Commit 35ea2a8

Browse files
Fix order
Signed-off-by: Deepak Raj H R <[email protected]>
1 parent 80320e8 commit 35ea2a8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ FROM ubuntu:22.04 as ubuntu_llvm
55
ENV DEBIAN_FRONTEND=noninteractive
66

77
# update the system and install any dependencies
8-
RUN add-apt-repository ppa:deadsnakes/ppa\
9-
&& apt-get update \
8+
RUN apt-get update \
109
&& apt-get upgrade -y libksba-dev \
11-
&& apt-get install -y git cmake build-essential byacc libpcre3 libpcre3-dev grep lsb-release wget software-properties-common gnupg libcurl4-openssl-dev unzip lcov python3.11 --no-install-recommends # skipcq: DOK-DL3018
10+
&& apt-get install software-properties-common \
11+
&& add-apt-repository ppa:deadsnakes/ppa\
12+
&& apt-get install -y git cmake build-essential byacc libpcre3 libpcre3-dev grep lsb-release wget gnupg libcurl4-openssl-dev unzip lcov python3.11 --no-install-recommends # skipcq: DOK-DL3018
1213

1314
# Get LLVM
1415
ARG LLVM_VER=16

0 commit comments

Comments
 (0)