Update Dockerfile

This commit is contained in:
2025-08-16 15:24:53 +02:00
parent bf2e303eb9
commit 6ef0924064

View File

@@ -4,14 +4,11 @@ LABEL maintainer="Luke Tainton <luke@tainton.uk>"
ENV PIPX_BIN_DIR=/usr/local/bin ENV PIPX_BIN_DIR=/usr/local/bin
RUN wget -q -O- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash && \ RUN curl -sL https://deb.nodesource.com/setup_24.x -o /tmp/nodesource_setup.sh && \
export NVM_DIR="$HOME/.nvm" && \ chmod +x /tmp/nodesource_setup.sh && /tmp/nodesource_setup.sh && \
[ -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:longsleep/golang-backports && \
apt-get update && \ apt-get update && \
apt-get install -y golang-go pipx && \ apt-get install -y golang-go pipx nodejs npm && \
apt-get clean && \ apt-get clean && \
pipx install poetry && \ pipx install poetry && \
pipx install uv pipx install uv