Issue was with wildcard in bun build step

This commit is contained in:
Peter Stockings
2026-01-01 16:39:03 +11:00
parent 72334f3d78
commit 0af9fa02a0

View File

@@ -20,7 +20,9 @@ COPY . .
# ensuring the environment variables are set for the build if needed
ENV NODE_ENV=production
ENV PORT=3000
RUN bun run build
RUN bun --filter "@torrent-client/shared" build
RUN bun --filter "@torrent-client/server" build
RUN bun --filter "@torrent-client/client" build
# Expose the port (Dokku will override PORT env var, but 3000 is a good default documentation)
EXPOSE 3000