Skip to content

Commit 0e8a51f

Browse files
committed
fix: run projects with --bun
1 parent 88075a7 commit 0e8a51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apis/websocket/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ WORKDIR /app
1414
COPY --from=build /build/apis/websocket/dist /app
1515
USER 1000:1000
1616

17-
ENTRYPOINT [ "bun", "run", "index.js" ]
17+
ENTRYPOINT [ "bun", "--bun", "run", "index.js" ]

bots/discord/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ COPY --from=build /build/bots/discord/dist /app
1515

1616
USER 1000:1000
1717

18-
ENTRYPOINT [ "bun", "run", "src/index.js" ]
18+
ENTRYPOINT [ "bun", "--bun", "run", "src/index.js" ]

0 commit comments

Comments
 (0)