Files
runner-ubuntu-custom/Dockerfile
Luke Tainton ebfdc64ac0
Some checks failed
/ release (push) Failing after 2m34s
Update Dockerfile
2025-08-16 15:07:14 +02:00

18 lines
570 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" && \
$NVM_DIR/nvm.sh && \
chmod +x $NVM_DIR/bash_completion && $NVM_DIR/bash_completion && \
nvm install 24 && \
add-apt-repository ppa:longsleep/golang-backports && \
apt-get update && \
apt-get install -y golang-go pipx && \
apt-get clean && \
pipx install poetry && \
pipx install uv