Fix docker extraCommands to copy hidden files
All checks were successful
Deploy / deploy (push) Successful in 1m36s

Same issue as installPhase - need to use /. suffix instead of /* glob
to include hidden directories like .next.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-11 17:06:28 +00:00
parent f2794cf396
commit 6ebd9788e1

View File

@@ -93,7 +93,7 @@ pkgs.dockerTools.buildImage {
extraCommands = ''
mkdir -p -m 1777 tmp
mkdir -p app
cp -r ${phaseflow}/* app/
cp -r ${phaseflow}/. app/
'';
config = {