From 78574905c5f72c3880cd0a3a9d0c9386dedfdf88 Mon Sep 17 00:00:00 2001 From: Alecks Gates Date: Wed, 8 Nov 2023 23:45:14 -0600 Subject: [PATCH] Base dockerfile on debian bookworm, install gcc --- Dockerfile | 2 +- install-packages.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5140a68..494f0f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/python:3.11-slim-bullseye +FROM docker.io/python:3.11-slim-bookworm ENV PYTHONFAULTHANDLER=1 \ PYTHONHASHSEED=random \ diff --git a/install-packages.sh b/install-packages.sh index 4098fa1..0f36c9c 100755 --- a/install-packages.sh +++ b/install-packages.sh @@ -17,7 +17,7 @@ apt-get update apt-get -y upgrade # Install application dependencies -apt-get -y install --no-install-recommends capnproto libffi7 zlib1g +apt-get -y install --no-install-recommends capnproto libffi7 zlib1g gcc # Delete cached files we don't need anymore (note that if you're # using official Docker images for Debian or Ubuntu, this happens