Skip to content

Commit 7b9ac78

Browse files
committed
fix timeout
1 parent d118e3d commit 7b9ac78

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ ARG FIREBASE_CONFIG
2323
ARG DOCS_BASE_URL
2424

2525
RUN if [ "$DOCS_BASE_URL" == "null" ]; \
26-
then timeout 1200 npm run build:app; \
27-
else timeout 1200 npm run build; \
26+
then npm run build:app; \
27+
else npm run build; \
2828
fi
2929

3030
FROM node:24.1.0-alpine3.21 AS server

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"watch": "nodemon --watch src -e \"*\" --ignore src/livecodes/i18n/locale-paths.ts ./scripts/build.js --dev",
1919
"prebuild": "npm run i18n-exclude pre",
2020
"postbuild": "npm run i18n-exclude post",
21-
"build": "run-s build:*",
21+
"build": "run-p build:*",
2222
"build:app": "run-s clean copy:* && node ./scripts/build.js",
2323
"build:ts": "tsc --emitDeclarationOnly --outFile build/livecodes/types.d.ts",
2424
"build:ts-sdk": "tsc --emitDeclarationOnly -p tsconfig.sdk.json && node ./scripts/bundle-types.js",

0 commit comments

Comments
 (0)