Skip to content

Commit

Permalink
Install bun in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jan 20, 2025
1 parent 4f9e644 commit 51e67f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ RUN apt-get update

# Install NodeJS
# --------------
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
RUN curl -fsSL https://deb.nodesource.com/nsolid_setup_deb.sh
RUN chmod 500 nsolid_setup_deb.sh
RUN ./nsolid_setup_deb.sh 20
RUN apt-get install nodejs -y

# Install Poetry
# --------------
RUN pip install --upgrade poetry hatch uv

# Create/Activate Python Venv
# ---------------------------
ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --upgrade pip

# Install Python Build
# ---------------------------
RUN pip install --upgrade pip poetry hatch uv
RUN curl -fsSL https://bun.sh/install | bash

# Copy Files
# ----------
Expand Down

0 comments on commit 51e67f8

Please sign in to comment.