Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jan 16, 2024
1 parent 8d2b0a2 commit b38878b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
FROM ubuntu:22.04

RUN apt update

RUN apt install -y curl unzip

# Install Rustup
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > ./rustup.sh
RUN chmod +x ./rustup.sh
RUN ./rustup.sh --default-toolchain none -y

# Install Bun
RUN curl -fsSL https://bun.sh/install > ./bun.sh
RUN chmod +x ./bun.sh
RUN ./bun.sh

# Install Nvm
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh > ./nvm.sh
RUN chmod +x ./nvm.sh
RUN ./nvm.sh
RUN bash -c "source ~/.nvm/nvm.sh && nvm install node"

0 comments on commit b38878b

Please sign in to comment.