From 4fcb5ee5ea75840768fe81009d6bf761ddb0d0b6 Mon Sep 17 00:00:00 2001 From: Jon Date: Sun, 14 Jan 2024 23:48:13 +0930 Subject: [PATCH] feat(docker): use python slim for base image !184 #23 --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 56ab4f6..e55fbb9 100644 --- a/dockerfile +++ b/dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETPLATFORM quay.io/ansible/receptor:devel as receptor -FROM --platform=$TARGETPLATFORM python:3.11-bullseye +FROM --platform=$TARGETPLATFORM python:3.11-slim-bullseye # Ansible chucks a wobbler without. see: https://github.com/ansible/ansible/issues/78283 ENV LC_ALL en_US.UTF-8