This commit is contained in:
Rizky 2024-08-15 21:29:07 +07:00
parent a5f8b4b5d1
commit 07d5613aa1
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM oven/bun:1.1.22 as base FROM oven/bun:latest as base
WORKDIR /app/prasi WORKDIR /app/prasi
RUN apt-get update RUN apt-get update

View File

@ -47,7 +47,7 @@ const startMain = () => {
const oldprocess = main.process; const oldprocess = main.process;
setTimeout(() => { setTimeout(() => {
oldprocess?.postMessage("stop-server"); oldprocess?.postMessage("stop-server");
}, 3000); }, 1000);
main.process = startMain(); main.process = startMain();
} }
}; };