From c3f8a331992b61b7c4146da64749ec13c397f4a0 Mon Sep 17 00:00:00 2001 From: John Wang Date: Fri, 19 May 2023 01:02:08 +0800 Subject: [PATCH] fix: remove python-psycopg2 --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 667d0cdec1..235b46b55e 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -12,7 +12,7 @@ ENV APP_URL http://127.0.0.1:5001 EXPOSE 5001 RUN apt-get update && \ - apt-get install -y bash curl wget vim gcc g++ python3-dev libc-dev libffi-dev postgresql python-psycopg2 libpq-dev + apt-get install -y bash curl wget vim gcc g++ python3-dev libc-dev libffi-dev postgresql libpq-dev RUN pip3 install gunicorn