From 4f0d37224bed3aa275719615fed9593ef3041ccd Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Thu, 10 Oct 2024 00:19:50 -0400 Subject: [PATCH] use bullseye in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b729df8..aeca537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10 +FROM python:3.10-bullseye COPY . /tmp/package RUN pip install --no-cache-dir /tmp/package && \ rm -r /tmp/package