Skip to content

Commit 88fbd60

Browse files
committed
remove turbopack from builds
1 parent b0a016f commit 88fbd60

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ COPY . .
2323
ENV NEXT_TELEMETRY_DISABLED=1
2424

2525
# Build the application
26+
# Note: We don't use --turbopack as it's not supported on ARM v7/v6 architectures
2627
RUN npm run build
2728

2829
# Production image, copy all the files and run next

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flightboard",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"private": false,
55
"bin": {
66
"flightboard-tui": "./bin/flightboard-tui",
@@ -9,7 +9,7 @@
99
},
1010
"scripts": {
1111
"dev": "next dev --turbopack",
12-
"build": "next build --turbopack && npm run build:cli",
12+
"build": "next build && npm run build:cli",
1313
"build:cli": "tsc -p tsconfig.cli.json",
1414
"start": "next start",
1515
"test": "jest",

0 commit comments

Comments
 (0)