File tree 1 file changed +6
-6
lines changed 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
5
5
6
6
# Install NodeJS
7
7
# --------------
8
- RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
8
+ RUN curl -fsSL https://deb.nodesource.com/nsolid_setup_deb.sh
9
9
RUN chmod 500 nsolid_setup_deb.sh
10
10
RUN ./nsolid_setup_deb.sh 20
11
11
RUN apt-get install nodejs -y
12
12
13
- # Install Poetry
14
- # --------------
15
- RUN pip install --upgrade poetry hatch uv
16
-
17
13
# Create/Activate Python Venv
18
14
# ---------------------------
19
15
ENV VIRTUAL_ENV=/opt/venv
20
16
RUN python3 -m venv $VIRTUAL_ENV
21
17
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
23
23
24
24
# Copy Files
25
25
# ----------
You can’t perform that action at this time.
0 commit comments