1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-25 18:56:52 +03:00
guide/docker/back/Dockerfile
Artyom Kazak 59deb57474
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
2019-07-12 20:48:40 +03:00

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