File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ FROM ubuntu:22.04 as ubuntu_llvm
5
5
ENV DEBIAN_FRONTEND=noninteractive
6
6
7
7
# update the system and install any dependencies
8
- RUN add-apt-repository ppa:deadsnakes/ppa\
9
- && apt-get update \
8
+ RUN apt-get update \
10
9
&& 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
12
13
13
14
# Get LLVM
14
15
ARG LLVM_VER=16
You can’t perform that action at this time.
0 commit comments