16 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			Text
		
	
	
	
	
	
FROM ubuntu:latest
 | 
						|
 | 
						|
RUN apt update
 | 
						|
RUN apt-get install -y \
 | 
						|
    build-essential \
 | 
						|
    cmake \
 | 
						|
    clang \
 | 
						|
    clang-tidy \
 | 
						|
    gcc \
 | 
						|
    g++ \
 | 
						|
    python3 \
 | 
						|
    python3-pip \
 | 
						|
    python3.12-venv
 | 
						|
    
 | 
						|
RUN python3 -m venv /opt/venv
 | 
						|
RUN . /opt/venv/bin/activate && pip install conan==2.5.0
 |