This commit is contained in:
Rizky 2024-03-20 11:01:54 +07:00
parent 8c324a955f
commit 41be30c2bc
2 changed files with 2 additions and 2 deletions

BIN
dockerzip

Binary file not shown.

View File

@ -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,