Hello, I would like to install bun inside an Alpine Linux devcontainer ... however, I don't seem to be having much luck.
I have the following setup inside the Dockerfile:
# Install Bun
RUN curl -fsSL https://bun.sh/install | bash
# Set the BUN_INSTALL environment variable
ENV $BUN_INSTALL="$HOME/.bun"
# Set the PATH to include Bun
ENV $PATH="$BUN_INSTALL/bin:$PATH"
# Configure Zsh with Bun
RUN echo 'export BUN_INSTALL="$HOME/.bun"' >> ~/.zshrc && echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> ~/.zshrc
Yet, alas, no luck (see screenshot). The bun command is not found.
I try installing manually inside the container, still no luck. (see screenshot) The bun command is not found.
Amy help would be amazing ... !
