19 lines
		
	
	
		
			657 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			657 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM gitea/runner-images:ubuntu-latest
 | 
						|
 | 
						|
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
 | 
						|
 | 
						|
ENV PIPX_BIN_DIR=/usr/local/bin
 | 
						|
 | 
						|
RUN wget -q -O- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash && \
 | 
						|
    export NVM_DIR="$HOME/.nvm" && \
 | 
						|
    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \
 | 
						|
    [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" && \
 | 
						|
    nvm install 24 && \
 | 
						|
    add-apt-repository ppa:longsleep/golang-backports && \
 | 
						|
    add-apt-repository ppa:git-core/ppa && \
 | 
						|
    apt-get update && \
 | 
						|
    apt-get install -y golang-go pipx git && \
 | 
						|
    apt-get clean && \
 | 
						|
    pipx install poetry && \
 | 
						|
    pipx install uv
 |