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/
3
3
4
4
RUN apt-get update
5
5
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
-
12
6
# Create/Activate Python Venv
13
7
# ---------------------------
14
8
ENV VIRTUAL_ENV=/opt/venv
15
9
RUN python3 -m venv $VIRTUAL_ENV
16
10
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
17
11
18
- # Install Python Build
19
- # ---------------------------
12
+ # Install Python Build Dependencies
13
+ # ---------------------------------
20
14
RUN pip install --upgrade pip poetry hatch uv
21
15
RUN curl -fsSL https://bun.sh/install | bash
16
+ ENV PATH="/root/.bun/bin:$PATH"
22
17
23
18
# Copy Files
24
19
# ----------
Original file line number Diff line number Diff line change 3
3
Build the javascript with
4
4
5
5
```
6
- npm run build
6
+ bun run build
7
7
```
8
8
9
9
This will drop a javascript bundle into ` ../_static/custom.js `
You can’t perform that action at this time.
0 commit comments