Skip to content

Commit a0812a9

Browse files
committed
clean up
1 parent 7c88a91 commit a0812a9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

agent/compiler/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from typing import TypedDict, overload
2-
import os
32
import time
43
import uuid
54
import shlex
@@ -100,7 +99,7 @@ def exec_demux(container: docker.models.containers.Container, command: list[str]
10099
exit_code, (stdout, stderr) = container.exec_run(
101100
command,
102101
demux=True,
103-
environment={"NO_COLOR": "1", "FORCE_COLOR": "0", **dict(os.environ)},
102+
environment={"NO_COLOR": "1", "FORCE_COLOR": "0", "APP_DATABASE_URL": "postgres://postgres:postgres@postgres:5432/postgres"},
104103
)
105104
return CompileResult(
106105
exit_code=exit_code,

0 commit comments

Comments
 (0)