File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ 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 apt-get update \
8
+ RUN sudo add-apt-repository ppa:deadsnakes/ppa\
9
+ && apt-get update \
9
10
&& apt-get upgrade -y libksba-dev \
10
- && 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 --no-install-recommends # skipcq: DOK-DL3018
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
11
12
12
13
# Get LLVM
13
14
ARG LLVM_VER=16
You can’t perform that action at this time.
0 commit comments