Skip to content

Commit

Permalink
add bun and aws to docker container
Browse files Browse the repository at this point in the history
Signed-off-by: JL102 <[email protected]>
  • Loading branch information
JL102 committed Feb 15, 2025
1 parent 8c7473c commit 837a4a2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,15 @@ RUN . /etc/os-release \
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"

# [Optional] Uncomment if you want to install more global node modules
RUN su node -c "yarn global add less less-plugin-clean-css typescript ts-node"
RUN su node -c "yarn global add less less-plugin-clean-css typescript ts-node"

run curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
run unzip awscliv2.zip
run sudo ./aws/install

# Download and install Bun
RUN curl -fsSL https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip -o bun.zip \
&& unzip bun.zip \
&& mv bun-linux-x64/bun /usr/local/bin/ \
&& chmod +x /usr/local/bin/bun \
&& rm -rf bun.zip bun-linux-x64

0 comments on commit 837a4a2

Please sign in to comment.