fix(ci): point web image ENTRYPOINT at /app/server #5
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/web-entrypoint-server-binary"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes VAPP-2.
Container start failed with
exec: "/app/vervain-app": stat /app/vervain-app: no such file or directory. dx 0.7 names the fullstack web server binaryserverinsidetarget/dx/<package>/release/web/regardless of package name, so the published image ships/app/serverand the ENTRYPOINT pointed at a path that does not exist (verified against the livevervain-web:latest, digestsha256:9ee2439a..., where/appcontainsserver,public/,assets/).ci-build/Dockerfile.web: ENTRYPOINT changed to["/app/server"]with a comment explaining the dx naming convention. No compose changes needed; healthcheck and EXPOSE stay valid.After merge, CI publishes a new
vervain-web:latest; re-run the deploy (just app-start) to verify the container starts and the healthcheck passes.