diff --git a/containers/app/Dockerfile b/containers/app/Dockerfile index 1e71055ef2..9fb1c12982 100644 --- a/containers/app/Dockerfile +++ b/containers/app/Dockerfile @@ -70,7 +70,6 @@ ENV VIRTUAL_ENV=/app/.venv \ PYTHONPATH='/app' COPY --chown=openhands:app --chmod=770 --from=backend-builder ${VIRTUAL_ENV} ${VIRTUAL_ENV} -RUN playwright install --with-deps chromium COPY --chown=openhands:app --chmod=770 ./microagents ./microagents COPY --chown=openhands:app --chmod=770 ./openhands ./openhands diff --git a/containers/app/entrypoint.sh b/containers/app/entrypoint.sh index 380490449a..fe26f92fca 100644 --- a/containers/app/entrypoint.sh +++ b/containers/app/entrypoint.sh @@ -26,10 +26,6 @@ fi if [[ "$SANDBOX_USER_ID" -eq 0 ]]; then echo "Running OpenHands as root" export RUN_AS_OPENHANDS=false - mkdir -p /root/.cache/ms-playwright/ - if [ -d "/home/openhands/.cache/ms-playwright/" ]; then - mv /home/openhands/.cache/ms-playwright/ /root/.cache/ - fi "$@" else echo "Setting up enduser with id $SANDBOX_USER_ID" @@ -58,10 +54,6 @@ else fi mkdir -p /home/enduser/.cache/huggingface/hub/ - mkdir -p /home/enduser/.cache/ms-playwright/ - if [ -d "/home/openhands/.cache/ms-playwright/" ]; then - mv /home/openhands/.cache/ms-playwright/ /home/enduser/.cache/ - fi usermod -aG $DOCKER_SOCKET_GID enduser echo "Running as enduser" diff --git a/poetry.lock b/poetry.lock index 04255dd705..cf0ab94bb4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand. [[package]] name = "aiohappyeyeballs" @@ -2857,7 +2857,7 @@ grpcio = {version = ">=1.49.1,<2.0dev", optional = true, markers = "python_versi grpcio-status = {version = ">=1.49.1,<2.0.dev0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\""} proto-plus = [ {version = ">=1.25.0,<2.0.0dev", markers = "python_version >= \"3.13\""}, - {version = ">=1.22.3,<2.0.0dev", markers = "python_version < \"3.13\""}, + {version = ">=1.22.3,<2.0.0dev"}, ] protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0" requests = ">=2.18.0,<3.0.0.dev0" @@ -8519,7 +8519,7 @@ description = "C version of reader, parser and emitter for ruamel.yaml derived f optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version < \"3.13\" and platform_python_implementation == \"CPython\"" +markers = "platform_python_implementation == \"CPython\" and python_version == \"3.12\"" files = [ {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:11f891336688faf5156a36293a9c362bdc7c88f03a8a027c2c1d8e0bcde998e5"}, {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a606ef75a60ecf3d924613892cc603b154178ee25abb3055db5062da811fd969"}, @@ -9911,7 +9911,7 @@ description = "A language and compiler for custom Deep Learning operations" optional = false python-versions = "*" groups = ["evaluation"] -markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\" and python_version < \"3.13\"" +markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\" and python_version == \"3.12\"" files = [ {file = "triton-3.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e1efef76935b2febc365bfadf74bcb65a6f959a9872e5bddf44cc9e0adce1e1a"}, {file = "triton-3.0.0-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5ce8520437c602fb633f1324cc3871c47bee3b67acf9756c1a66309b60e3216c"}, @@ -11119,4 +11119,4 @@ cffi = ["cffi (>=1.11)"] [metadata] lock-version = "2.1" python-versions = "^3.12" -content-hash = "59fa1b0c667c51b6cac0f281676a90f0d33c577c239c95f2d885094f903abf6a" +content-hash = "df5949812d14c2b0c9f02e5077428e38b3b155a642a7c8d87d1bd5e5698b62e6" diff --git a/pyproject.toml b/pyproject.toml index 6a19bbffcf..eff3d51bbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,7 +74,6 @@ memory-profiler = "^0.61.0" daytona-sdk = "0.15.0" mcp = "1.7.1" python-json-logger = "^3.2.1" -playwright = "^1.51.0" prompt-toolkit = "^3.0.50" mcpm = "1.8.0" poetry = "^2.1.2"