FROM python:3.11-bookworm LABEL authors="lagertonne" ENV PYTHONUNBUFFERED 1 RUN mkdir /code WORKDIR /code COPY requirements.prod.txt /code/ RUN apt update && apt install -y mariadb-client RUN pip install -r requirements.prod.txt RUN pip install mysqlclient COPY .. /code/