fix(docker): use -p flag instead of -l for serve command

serve v14 changed the CLI syntax - -l no longer works for port binding.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexa Louise
2025-11-29 21:34:08 -06:00
parent f490db586d
commit d9dc4eb1c5

View File

@@ -32,4 +32,4 @@ ENV PORT=3000
EXPOSE 3000 EXPOSE 3000
CMD ["sh", "-c", "serve -s .out -l ${PORT:-3000} || serve -s out -l ${PORT:-3000} || serve -s build -l ${PORT:-3000} || serve -s dist -l ${PORT:-3000}"] CMD ["sh", "-c", "serve -s .out -p ${PORT:-3000} || serve -s out -p ${PORT:-3000} || serve -s build -p ${PORT:-3000} || serve -s dist -p ${PORT:-3000}"]