From f91eb36963c1e6177e0d368b20c32988687e5d22 Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Thu, 1 Feb 2024 17:49:34 -0500 Subject: [PATCH] forget about the python-slim image for now --- CI.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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"))