mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-10-27 04:56:39 +00:00 
			
		
		
		
	Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			592 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			592 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.238.1/containers/codespaces-linux/.devcontainer/base.Dockerfile
 | |
| 
 | |
| FROM mcr.microsoft.com/vscode/devcontainers/universal:2-focal
 | |
| 
 | |
| # ** [Optional] Uncomment this section to install additional packages. **
 | |
| # USER root
 | |
| #
 | |
| # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
 | |
| #     && apt-get -y install --no-install-recommends <your-package-list-here>
 | |
| 
 | |
| USER codespace
 | |
| 
 | |
| # [Required] Poetry
 | |
| RUN curl -sSL https://install.python-poetry.org | python - -y
 | |
| RUN poetry config virtualenvs.in-project true
 |