Fixed
- Container was crashing on startup (
Cannot find module './package.json') because the multi-stage Dockerfile introduced in
1.7.0 never copiedpackage.jsoninto the final image — only
node_modules,server.js, andpublic/were copied.
server.jsreadspackage.jsonat startup for the/api/version
endpoint, so this broke every deploy. Final stage now copies
package.jsontoo.