You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							578 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							578 B
						
					
					
				| FROM ubuntu:24.04
 | |
| 
 | |
| ENV DEBIAN_FRONTEND=noninteractive
 | |
| RUN apt-get update && apt-get install -y capnproto libcapnp-dev clang wget git autoconf libtool curl make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python3-openssl libeigen3-dev python3-pip python3-dev
 | |
| 
 | |
| WORKDIR /project
 | |
| 
 | |
| ENV PYTHONPATH=/project
 | |
| 
 | |
| COPY . .
 | |
| RUN rm -rf .git
 | |
| RUN pip3 install --break-system-packages --no-cache-dir -r requirements.txt
 | |
| RUN python3 setup.py install
 | |
| RUN scons -c && scons -j$(nproc)
 | |
| 
 |