mirror of
				https://github.com/Ryujinx/ryuko-ng.git
				synced 2025-11-04 13:14:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			302 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			302 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:alpine
 | 
						|
 | 
						|
WORKDIR /usr/src/app
 | 
						|
 | 
						|
COPY requirements.txt ./
 | 
						|
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev openssl-dev cargo && pip install --no-cache-dir -r requirements.txt && apk del gcc musl-dev python3-dev libffi-dev openssl-dev cargo
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
CMD [ "python", "./Robocop.py" ] |