From 850f081dca8484415c124f035d5e4a2cad38b5a2 Mon Sep 17 00:00:00 2001 From: Barabazs <31799121+Barabazs@users.noreply.github.com> Date: Sat, 12 Oct 2024 14:26:48 +0200 Subject: [PATCH] fix: use correct python image in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbd87ad..aef3d23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ENV RMAPIREPO github.com/juruen/rmapi RUN git clone https://${RMAPIREPO} && cd rmapi && go install -FROM python:3.7-slim-buster +FROM python:3.11-slim-bullseye # rmapi COPY --from=rmapi /go/bin/rmapi /usr/bin/rmapi