diff --git a/Dockerfile b/Dockerfile index 485836b8..b61701fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,26 @@ FROM ubuntu:latest # Install dependencies -RUN apt update && apt install -y \ +RUN apt update && apt upgrade -y +RUN apt install -y \ curl \ wget \ + make \ + g++ \ gzip \ unzip \ git \ - npm \ python3 \ + python3-venv \ cargo \ ripgrep \ fd-find +RUN apt remove -y nodejs npm && \ + curl -sL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh && \ + bash nodesource_setup.sh && \ + apt install -y nodejs + # Installation Settings # branch can be nightly ENV BRANCH=stable