fix: update base image from deprecated buster to bullseye for security and availability

This commit is contained in:
Cipher Vance 2025-08-25 14:04:52 -05:00
parent e52d0c61ca
commit 8dd316daf1

View file

@ -1,8 +1,8 @@
FROM python:3.11-slim-buster
FROM python:3.11-slim-bullseye
# Install system dependencies
RUN apt-get update && \
apt-get install -y build-essential && \
apt-get install -y build-essential curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*