From c6ba50be205763342992fdddad6ca59755051dd9 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Tue, 4 Apr 2023 20:33:55 +0200 Subject: install driver for Postgres and MySQL on docker Considering this is the example/"official" image, it makes sense to support the big (open source) databases PostgreSQL and MySQL/MariaDB out of the box. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22e0717..262cfac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.11 -RUN pip install gunicorn +RUN pip install gunicorn psycopg2-binary mysqlclient RUN mkdir /package WORKDIR /package/ -- cgit v1.2.3