mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 20:51:49 +02:00
Install psycopg2 in docker image
This dependency is needed to use PostgreSQL.
This commit is contained in:
parent
4d6a5aaa27
commit
96c75e7f13
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ ENV DEBUG="False" \
|
|||
LEGAL_LINK="False"
|
||||
|
||||
RUN mkdir -p /etc/ihatemoney &&\
|
||||
pip install --no-cache-dir gunicorn pymysql;
|
||||
apk update && apk add postgresql-dev gcc python3-dev musl-dev &&\
|
||||
pip install --no-cache-dir gunicorn pymysql psycopg2;
|
||||
|
||||
ADD . /src
|
||||
|
||||
|
|
Loading…
Reference in a new issue