File tree Expand file tree Collapse file tree 6 files changed +10
-776
lines changed Expand file tree Collapse file tree 6 files changed +10
-776
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,17 @@ WORKDIR /app/
33
44RUN apt-get update
55
6- # Install NodeJS
7- # --------------
8- RUN curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh
9- RUN bash nodesource_setup.sh
10- RUN apt-get install -y nodejs
11-
126# Create/Activate Python Venv
137# ---------------------------
148ENV VIRTUAL_ENV=/opt/venv
159RUN python3 -m venv $VIRTUAL_ENV
1610ENV PATH="$VIRTUAL_ENV/bin:$PATH"
1711
18- # Install Python Build
19- # ---------------------------
12+ # Install Python Build Dependencies
13+ # ---------------------------------
2014RUN pip install --upgrade pip poetry hatch uv
2115RUN curl -fsSL https://bun.sh/install | bash
16+ ENV PATH="/root/.bun/bin:$PATH"
2217
2318# Copy Files
2419# ----------
Original file line number Diff line number Diff line change 33Build the javascript with
44
55```
6- npm run build
6+ bun run build
77```
88
99This will drop a javascript bundle into ` ../_static/custom.js `
You can’t perform that action at this time.
0 commit comments