14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Docker
		
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Docker
		
	
	
| 
								 | 
							
								FROM ubuntu:22.04
							 | 
						||
| 
								 | 
							
								ENV DEBIAN_FRONTEND noninteractive
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN apt-get update && apt-get install --yes \
							 | 
						||
| 
								 | 
							
								    python3-capstone \
							 | 
						||
| 
								 | 
							
								    python3-setuptools \
							 | 
						||
| 
								 | 
							
								    python3-sqlalchemy \
							 | 
						||
| 
								 | 
							
								    && apt-get clean
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								COPY setup.py /app/
							 | 
						||
| 
								 | 
							
								COPY subdisassem /app/subdisassem/
							 | 
						||
| 
								 | 
							
								WORKDIR /app/
							 | 
						||
| 
								 | 
							
								RUN python3 setup.py install
							 |