mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-01 00:17:55 +03:00 
			
		
		
		
	* Update application-single-container example * Update application-multiple-containers example * Update decoupled-packages example * Update movie lister example * Update CLI tutorial * Update sanic example * Update sanic example with wiring_config * Update fastapi example * Update fastapi-simple example * Update fastapi-sqlalchemy example * Update flask-blueprints example * Update flask example and tutorial * Update aiohttp example and tutorial * Update asyncio-daemon example and tutorial
		
			
				
	
	
		
			14 lines
		
	
	
		
			240 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			240 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.10-buster
 | |
| 
 | |
| ENV PYTHONUNBUFFERED=1
 | |
| 
 | |
| WORKDIR /code
 | |
| COPY . /code/
 | |
| 
 | |
| RUN apt-get install openssl \
 | |
|  && pip install --upgrade pip \
 | |
|  && pip install -r requirements.txt \
 | |
|  && rm -rf ~/.cache
 | |
| 
 | |
| CMD ["python", "-m", "monitoringdaemon"]
 |