diff --git a/apis/websocket/Dockerfile b/apis/websocket/Dockerfile index 9a9db88..5f63eb9 100644 --- a/apis/websocket/Dockerfile +++ b/apis/websocket/Dockerfile @@ -14,4 +14,4 @@ WORKDIR /app COPY --from=build /build/apis/websocket/dist /app USER 1000:1000 -ENTRYPOINT [ "bun", "run", "index.js" ] +ENTRYPOINT [ "bun", "--bun", "run", "index.js" ] diff --git a/bots/discord/Dockerfile b/bots/discord/Dockerfile index 50ec086..7c02d84 100644 --- a/bots/discord/Dockerfile +++ b/bots/discord/Dockerfile @@ -15,4 +15,4 @@ COPY --from=build /build/bots/discord/dist /app USER 1000:1000 -ENTRYPOINT [ "bun", "run", "src/index.js" ] +ENTRYPOINT [ "bun", "--bun", "run", "src/index.js" ]