diff --git a/CI.py b/CI.py index 85e6477..da76ba4 100644 --- a/CI.py +++ b/CI.py @@ -29,15 +29,8 @@ async def test(): python = ( client.container() - .from_("python:3.12-slim") + .from_("python:3.12") .with_service_binding("redis", redis) - .with_exec( - [ - "/bin/sh", - "-c", - "apt-get update && apt-get install --no-install-recommends -y build-essential", - ] - ) .with_exec(["pip", "install", "poetry"]) .with_workdir("/src") .with_file("/src/poetry.lock", client.host().file("poetry.lock"))