16 lines
		
	
	
		
			593 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			593 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| FROM node:19.0.0-alpine
 | |
| LABEL author="Lossless GmbH <hello@lossless.com>"
 | |
| RUN apk update && apk add bash libc6-compat alpine-sdk
 | |
| ENV PYTHONUNBUFFERED=1
 | |
| RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
 | |
| RUN python3 -m ensurepip
 | |
| RUN pip3 install --no-cache --upgrade pip setuptools
 | |
| 
 | |
| #pnpm
 | |
| ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
 | |
| RUN mkdir -p ${PNPM_HOME}
 | |
| ENV PATH="$PNPM_HOME:$PATH"
 | |
| RUN curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm;
 | |
| RUN pnpm -v
 | |
| 
 | |
| ENV NODE_OPTIONS="--max_old_space_size=1000" |