File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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
99RUN chmod 500 nsolid_setup_deb.sh
1010RUN ./nsolid_setup_deb.sh 20
1111RUN 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# ---------------------------
1915ENV VIRTUAL_ENV=/opt/venv
2016RUN python3 -m venv $VIRTUAL_ENV
2117ENV 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# ----------
You can’t perform that action at this time.
0 commit comments