From d319fa21f5af618d60d775f101fab2d746466ff8 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Tue, 23 Sep 2025 20:37:17 +0200 Subject: [PATCH] Update python interpreter version in dockerfile --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41b1a33..6c6a9bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -# syntax=docker/dockerfile:1 +FROM python:3.13.7-slim-buster + +RUN apt-get update -y && apt-get install -y ffmpeg libopus0 -FROM python:3.10.1-slim-buster -RUN apt-get update -y -RUN apt-get install -y ffmpeg libopus0 WORKDIR /app -COPY requirements.txt requirements.txt -RUN pip3 install -r requirements.txt COPY . . + +RUN pip3 install -r requirements.txt + CMD ["python3", "-u", "bot.py"]