From 6445ccb4a447465bc08898ff09d63199a5ae97f6 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sun, 6 Oct 2024 23:22:08 +0100 Subject: [PATCH] bump Dockerfile - closed #86 - closes #84 - closes #82 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d2f333a..a581151 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-alpine +FROM python:3.12-alpine RUN apk update && apk add --no-cache git COPY dist/*.whl . RUN pip install -U $(ls *.whl)[full] && rm *.whl