mirror of
				https://github.com/karl0ss/homepage.git
				synced 2025-11-04 00:10:57 +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"
 |