mirror of
				https://github.com/bytecodealliance/wasm-micro-runtime.git
				synced 2025-10-31 05:11:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			145 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			145 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.5
 | |
| 
 | |
| WORKDIR /app
 | |
| COPY . /app
 | |
| 
 | |
| RUN pip install django --no-cache-dir
 | |
| 
 | |
| ENTRYPOINT ["python", "manage.py", "runserver", "0.0.0.0:80"]
 | |
| 
 | 
