fix(docker): correct package name in ENTRYPOINT
The package is named 'fluxer_server' not '@fluxer/server'. This was causing 'No projects matched the filters' error at runtime.
This commit is contained in:
@@ -214,4 +214,4 @@ HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
|
|||||||
CMD curl -f http://localhost:8080/_health || exit 1
|
CMD curl -f http://localhost:8080/_health || exit 1
|
||||||
|
|
||||||
# Target the fluxer_server package specifically
|
# Target the fluxer_server package specifically
|
||||||
ENTRYPOINT ["pnpm", "--filter", "@fluxer/server", "start"]
|
ENTRYPOINT ["pnpm", "--filter", "fluxer_server", "start"]
|
||||||
|
|||||||
Reference in New Issue
Block a user