Skip to content

Commit e05b669

Browse files
committed
Actually fix Docker image (real)
1 parent 79fcfc3 commit e05b669

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bot.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-l
1313

1414
FROM base AS build
1515
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
16-
RUN pnpm run -w bingus-bot build
16+
RUN pnpm run --filter=bingus-bot build
1717

1818
FROM base
1919
COPY --from=prod-deps /app/node_modules /app/node_modules
2020
COPY --from=build /app/dist /app/dist
21-
CMD [ "pnpm", "-w", "bingus-bot", "start" ]
21+
CMD [ "pnpm", "--filter", "bingus-bot", "start" ]

0 commit comments

Comments
 (0)