Compare commits

6 Commits

Author SHA1 Message Date
e6b23469c2 chore(deps): update actions/checkout action to v5 2025-08-16 13:39:56 +00:00
bf2e303eb9 Update Dockerfile
Some checks failed
/ release (push) Failing after 7m54s
2025-08-16 15:13:39 +02:00
ebfdc64ac0 Update Dockerfile
Some checks failed
/ release (push) Failing after 2m34s
2025-08-16 15:07:14 +02:00
02cf25e41c Update Dockerfile
Some checks failed
/ release (push) Failing after 2m41s
2025-08-16 15:03:29 +02:00
6fa0e84a07 Update Dockerfile
Some checks failed
/ release (push) Failing after 2m48s
2025-08-16 15:00:20 +02:00
1f5e69baf6 Install Node.js 24
Some checks failed
/ release (push) Failing after 2m37s
2025-08-16 14:54:35 +02:00

View File

@@ -4,7 +4,12 @@ LABEL maintainer="Luke Tainton <luke@tainton.uk>"
ENV PIPX_BIN_DIR=/usr/local/bin
RUN add-apt-repository ppa:longsleep/golang-backports && \
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 && \
apt-get update && \
apt-get install -y golang-go pipx && \
apt-get clean && \