Files
wfh/entrypoint.sh
T
Jason Stedwell d8efa71992
Build and Push Docker Image / build (push) Successful in 1m43s
Fix Docker build: ship entrypoint.sh as a real file instead of heredoc COPY
The classic Docker builder (used by docker-build.yml on the host runner)
does not support heredoc COPY syntax, which caused 'COPY failed: no source
files were specified'. Replace the heredoc with a checked-in entrypoint.sh
copied normally.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 08:58:13 -05:00

7 lines
129 B
Bash
Executable File

#!/bin/sh
set -e
echo "Running prisma db push..."
npx prisma db push --accept-data-loss
echo "Starting server..."
node server.js