Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker/server/console/setup
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ JUNO_REPO="$JUNO_MAIN_DIR"
if [ "$CLI_BUILD" == "skylab" ]; then
# npm error signal SIGILL esbuild because package-lock contains a reference to esbuild arm
rm "${JUNO_REPO}"/package-lock.json
npm --prefix "${JUNO_REPO}" install

# .svelte-kit/tsconfig.json not found - npm run prepare is not run because ignore-scripts=true is defined
# that's why we run a custom install script that do npm i && npm run prepare
npm --prefix "${JUNO_REPO}" bootstrap:install

# we use npm run preview to run the console that's why we need to build the application
npm --prefix "${JUNO_REPO}" run build:skylab
Expand Down