From 41be30c2bc0e160a9f773e18a7d20088d53f1038 Mon Sep 17 00:00:00 2001 From: Rizky Date: Wed, 20 Mar 2024 11:01:54 +0700 Subject: [PATCH] wip fix --- dockerzip | Bin 1521 -> 1521 bytes pkgs/docker-prep.ts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerzip b/dockerzip index 0fee59eea9561686688c839e182fe5e1cc86c534..124356d2c4b842580cd7fcd66297c3f7657c93c1 100644 GIT binary patch delta 262 zcmey!{gIm|z?+$civa}8BPQ}lv#pB%mAWc^vLdVSL{4fDNuryL586qJH1#xG=!6Z8DS`r0h1FMHJ~PJ?q`%@1X?zEHIp(- z=n9iQScsKHlL_n~aSoU}C;PMLK*VH0n&z-rV5s=YqJ^Zwfz=F&H=WfG!V{i+msJD+ DFL*=v delta 262 zcmey!{gIm|z?+$civa}k!zS`bvpL58N_C8#tjH=n(Sd^rDCQ-HB*w+eA_7#(0aDzp z1(le%J5?n=tRw<#3Y1`FkYOmuPA}FE4dG;9Mi`1@z~n?m4X6p5`x&JeftF2P&7=$y zy27Ln7Gh=5WCA-#oCD_0$^I-l5HVShra3GY7%IN9Xd$U^U^PSHO=mTP@PsGdWfcJc De?dO_ diff --git a/pkgs/docker-prep.ts b/pkgs/docker-prep.ts index e248eb4..568a9c5 100644 --- a/pkgs/docker-prep.ts +++ b/pkgs/docker-prep.ts @@ -42,9 +42,9 @@ if (!g.dockerPrepared) { if ( file.startsWith("app/") || file.startsWith("pkgs/") || - ["bun.lockb", "package.json"].includes(file) + ["package.json"].includes(file) ) { - if (file.endsWith("package.json")) { + if (file.endsWith("package.json") || file.endsWith("bun.lockb")) { await dirAsync(dir.path("_tmp_docker", path.dirname(file))); await copyAsync(dir.path(file), dir.path("_tmp_docker", file), { overwrite: true,