diff --git a/dockerzip b/dockerzip index 0fee59e..124356d 100644 Binary files a/dockerzip and b/dockerzip differ 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,