revert: undo PR #47 Dockerfile apps/api switch (broke CI Docker build) #50
Reference in New Issue
Block a user
Delete Branch "revert/gro-1533-dockerfile-fix"
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?
Summary
Reverts PR #47 which switched the Dockerfile to build from
apps/api/src/. This broke CI Docker builds (runs #968, #970) because:pnpm-workspace.yamlonly includespackages/*, notapps/*pnpm-lock.yamlhas noapps/apiimporterpnpm install --frozen-lockfilefails in Docker context without workspace resolutionThe admin 500 root cause is NOT the Dockerfile build path — both root
src/andapps/api/src/are affected. The actual cause needs separate investigation (likely in enum alignment commit9462915or duplicate removal in4086b6f).What this reverts to
Root-based Dockerfile: builds
packages/types,packages/db, then rootpnpm buildfromsrc/. This is the working CI pipeline configuration.cc @cpfarhood