From b19c497d103dd2e2583c5df39c2b38d4e5c1c68a Mon Sep 17 00:00:00 2001 From: Luc Date: Tue, 16 Jan 2024 16:25:23 +0000 Subject: [PATCH] Bump --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f28a11..a54913c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:22.04 RUN apt update -RUN apt install -y curl unzip +RUN apt install -y curl unzip git # Install Rustup RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > ./rustup.sh @@ -19,3 +19,6 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh > . RUN chmod +x ./nvm.sh RUN ./nvm.sh RUN bash -c "source ~/.nvm/nvm.sh && nvm install node" + +# Install Docker +RUN apt install -y docker.io