mirror of
				https://github.com/karl0ss/homepage.git
				synced 2025-10-30 22:13:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			324 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			324 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ARG VARIANT="16-buster"
 | |
| FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
 | |
| 
 | |
| RUN npm install -g pnpm
 | |
| 
 | |
| RUN apt-get update \
 | |
|    && apt-get -y install --no-install-recommends \
 | |
|         python3-pip \
 | |
|         && apt-get clean -y \
 | |
|         && rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| ENV PATH="${PATH}:./node_modules/.bin"
 | 
