Verified Commit f34bf7ba authored by Peter Stanko's avatar Peter Stanko
Browse files

Fixes in order to build driver for pgsql

parent 98d347f0
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ EXPOSE 8000
ONBUILD COPY Pipfile Pipfile
ONBUILD COPY Pipfile.lock Pipfile.lock

RUN apk add --update --no-cache g++ gcc libxslt-dev
RUN apk add --update --no-cache g++ gcc libxslt-dev postgresql-dev postgresql-libs
RUN pipenv install --system

ENTRYPOINT ["sh", "run.sh"]
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ flask-emails = "*"
pytz = "*"
flask-migrate = "*"
python-gitlab = "*"
"psycopg2" = "*"
psycopg2-binary = "*"

[dev-packages]
pytest-cov = "*"