Files
filezzy-staging/backend/scripts/docker-dev-entrypoint.sh
2026-02-04 14:16:04 +01:00

8 lines
189 B
Bash

#!/bin/sh
set -e
cd /app
# When /app is bind-mounted, node_modules may be empty; install so the volume gets deps (incl. Prisma linux-musl).
npm install
npx prisma generate
exec npm run dev