mirror of
				https://github.com/karl0ss/homepage.git
				synced 2025-11-03 16:01:00 +00:00 
			
		
		
		
	devcontainers can be used by IDEs like VSCode to build the whole development environment in a container. This allows you to keep dependencies, build, and all development aspects separated from any development. It also allows contributors to instantly have a working, standardized development environment. It also allows cloud development tools like GitHub Codespaces be automatically setup with the desired environment. See https://containers.dev/ for more details
		
			
				
	
	
		
			7 lines
		
	
	
		
			160 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			160 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
ARG VARIANT="16-buster"
 | 
						|
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
 | 
						|
 | 
						|
RUN npm install -g pnpm
 | 
						|
 | 
						|
ENV PATH="${PATH}:./node_modules/.bin"
 |