I would like to use the module "pymysql" with the official python container https://hub.docker.com/_/python The only way I found so far is to make my own container like this:
FROM python:3
RUN pip install --upgrade pip && \
pip install --no-cache-dir pymysql
Is there a parameter I can use or add the module in another way?I don't want to rely on my own image.