Skip to content

Commit fac1ecd

Browse files
authored
dev: add Node.js and build-dev script for Docker dev (#13)
1 parent 54ebef9 commit fac1ecd

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV PYTHONUNBUFFERED 1
1616

1717
RUN apk add --update --no-cache --virtual .tmp-build-deps \
1818
gcc libc-dev linux-headers postgresql-dev \
19-
&& apk add libffi-dev
19+
&& apk add libffi-dev nodejs npm
2020

2121
# install dependencies
2222
RUN pip install --upgrade pip

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"build-conference": "cross-env BUILD_TARGET=conference vite build",
99
"build-dashboard": "cross-env BUILD_TARGET=app-dashboard vite build",
1010
"build": "cross-env BUILD=production npm-run-all --parallel build-participant build-conference build-dashboard",
11+
"build-dev": "npm-run-all build-participant build-conference build-dashboard",
1112
"watch-participant": "cross-env BUILD_TARGET=participant vite build --watch --sourcemap",
1213
"watch-conference": "cross-env BUILD_TARGET=conference vite build --watch --sourcemap",
1314
"watch-dashboard": "cross-env BUILD_TARGET=app-dashboard vite build --watch --sourcemap",

0 commit comments

Comments
 (0)