mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +02:00
feat(app): simplify run status UI and inline stop action (#551)
* feat(app): streamline run status and inline stop control * fix(docker): write compiled sidecars directly to /tmp
This commit is contained in:
@@ -60,14 +60,12 @@ services:
|
||||
mkdir -p /tmp/openwork-bins
|
||||
|
||||
echo "[headless] Building openwork-server binary (linux)..."
|
||||
cd /app/packages/server && bun build --compile src/cli.ts --outfile ./openwork-server-compiled \
|
||||
&& cp ./openwork-server-compiled "$$OPENWORK_SERVER_BIN" && rm -f ./openwork-server-compiled
|
||||
cd /app/packages/server && bun build --compile src/cli.ts --outfile "$$OPENWORK_SERVER_BIN"
|
||||
|
||||
echo "[headless] Building owpenbot binary (linux)..."
|
||||
OWPENBOT_VERSION=$$(node -p "require('/app/packages/owpenbot/package.json').version")
|
||||
cd /app/packages/owpenbot && bun build --compile src/cli.ts \
|
||||
--define "__OWPENBOT_VERSION__=\"$${OWPENBOT_VERSION}\"" --outfile ./owpenbot-compiled \
|
||||
&& cp ./owpenbot-compiled "$$OWPENBOT_BIN" && rm -f ./owpenbot-compiled
|
||||
--define "__OWPENBOT_VERSION__=\"$${OWPENBOT_VERSION}\"" --outfile "$$OWPENBOT_BIN"
|
||||
|
||||
cd /app
|
||||
|
||||
|
||||
Reference in New Issue
Block a user