Skip to content

Commit c338145

Browse files
committed
fix: Dockerfile and app dependencies
1 parent 1dd781d commit c338145

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN chown -R admin .
66
COPY --chown=admin . .
77
USER admin
88

9-
RUN bun install --production --ignore-scripts
9+
RUN bun install --production --filter app
1010

1111
ENV PORT=8080
12-
CMD [ "bun", "run", "--cwd", "app", "start" ]
12+
CMD [ "bun", "--filter", "app", "start" ]

app/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"@trpc/client": "11.8.1",
1010
"@trpc/react-query": "11.8.1",
1111
"@trpc/server": "11.8.1",
12+
"@types/bun": "1.3.5",
1213
"@types/lodash": "4.17.21",
1314
"@types/react": "19.2.7",
1415
"@types/react-dom": "19.2.3",
@@ -18,6 +19,7 @@
1819
"react-dom": "19.2.3",
1920
"react-router-dom": "7.11.0",
2021
"trpc-bun-adapter": "1.3.0",
22+
"shared": "workspace:*",
2123
"tailwindcss": "4.1.18",
2224
"zod": "4.2.1"
2325
},

bun.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"@trpc/client": "11.8.1",
4545
"@trpc/react-query": "11.8.1",
4646
"@trpc/server": "11.8.1",
47+
"@types/bun": "1.3.5",
4748
"@types/lodash": "4.17.21",
4849
"@types/react": "19.2.7",
4950
"@types/react-dom": "19.2.3",
@@ -52,6 +53,7 @@
5253
"react": "19.2.3",
5354
"react-dom": "19.2.3",
5455
"react-router-dom": "7.11.0",
56+
"shared": "workspace:*",
5557
"tailwindcss": "4.1.18",
5658
"trpc-bun-adapter": "1.3.0",
5759
"zod": "4.2.1",
@@ -1023,7 +1025,7 @@
10231025

10241026
"@trysound/sax": ["@trysound/[email protected]", "", {}, "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="],
10251027

1026-
"@tsconfig/node10": ["@tsconfig/[email protected].11", "", {}, "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw=="],
1028+
"@tsconfig/node10": ["@tsconfig/[email protected].12", "", {}, "sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ=="],
10271029

10281030
"@tsconfig/node12": ["@tsconfig/[email protected]", "", {}, "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag=="],
10291031

0 commit comments

Comments
 (0)