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:
parent
6ff67cb994
commit
59deb57474
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user