1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-22 04:11:32 +03:00

Add libpq to Docker image dependencies (#334)

Otherwise running `docker run quay.io/aelve/guide:develop--back` results in:

    ./guide: error while loading shared libraries:
    libpq.so.5: cannot open shared object file: No such file or directory
This commit is contained in:
Artyom Kazak 2019-07-12 20:48:40 +03:00 committed by GitHub
parent 6ff67cb994
commit 59deb57474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ FROM ubuntu:xenial
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
RUN apt update && apt install -y libgmp-dev
RUN apt update && apt install -y libgmp-dev libpq-dev
WORKDIR /opt/guide