mirror of
https://github.com/aelve/guide.git
synced 2024-11-25 18:56:52 +03:00
59deb57474
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
13 lines
159 B
Docker
13 lines
159 B
Docker
FROM ubuntu:xenial
|
|
|
|
ENV LANG=C.UTF-8
|
|
ENV LC_ALL=C.UTF-8
|
|
|
|
RUN apt update && apt install -y libgmp-dev libpq-dev
|
|
|
|
WORKDIR /opt/guide
|
|
|
|
COPY files ./
|
|
|
|
CMD ./guide
|