Skip to content

Commit 51e67f8

Browse files
committed
Install bun in docker image
1 parent 4f9e644 commit 51e67f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ RUN apt-get update
55

66
# Install NodeJS
77
# --------------
8-
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
8+
RUN curl -fsSL https://deb.nodesource.com/nsolid_setup_deb.sh
99
RUN chmod 500 nsolid_setup_deb.sh
1010
RUN ./nsolid_setup_deb.sh 20
1111
RUN apt-get install nodejs -y
1212

13-
# Install Poetry
14-
# --------------
15-
RUN pip install --upgrade poetry hatch uv
16-
1713
# Create/Activate Python Venv
1814
# ---------------------------
1915
ENV VIRTUAL_ENV=/opt/venv
2016
RUN python3 -m venv $VIRTUAL_ENV
2117
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
22-
RUN pip install --upgrade pip
18+
19+
# Install Python Build
20+
# ---------------------------
21+
RUN pip install --upgrade pip poetry hatch uv
22+
RUN curl -fsSL https://bun.sh/install | bash
2323

2424
# Copy Files
2525
# ----------

0 commit comments

Comments
 (0)