From 7a3f8238042faec170e73ea9f810ce6abc8bd0a0 Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 15 Feb 2024 12:26:17 +0300 Subject: [PATCH] py312-fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ce2d47..d9c8e9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:slim +FROM python:3.12-slim # Set the working directory in the container to /app WORKDIR /app @@ -19,4 +19,4 @@ RUN apt-get update && apt-get install -y gcc curl && \ poetry install --no-dev # Run server.py when the container launches -CMD ["python", "server.py"] \ No newline at end of file +CMD ["python", "server.py"]