diff --git a/Dockerfile b/Dockerfile index 9714e23..073f3a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim as build +FROM python:3.12-slim as build RUN apt-get update RUN apt-get install -y --no-install-recommends build-essential gcc @@ -26,7 +26,7 @@ COPY requirements.txt . RUN pip install -r requirements.txt # FROM python:3.12.0b3-slim@sha256:8e3ef64883278384c49293caf631d614b4bfdac7bb494d44e17cf2d711ce2652 -FROM python:3.10-slim@sha256:2bac43769ace90ebd3ad83e5392295e25dfc58e58543d3ab326c3330b505283d +FROM python:3.12-slim@sha256:19a6235339a74eca01227b03629f63b6f5020abc21142436eced6ec3a9839a76 RUN groupadd -g 999 python && \ useradd -r -u 999 -g python python