pg-libphonenumber/Dockerfile

20 lines
469 B
Docker
Raw Normal View History

2017-07-06 17:07:28 +00:00
FROM postgres:10-beta1
RUN apt-get update && apt-get install -y \
build-essential \
2017-03-15 20:24:51 +00:00
postgresql-server-dev-${PG_MAJOR} \
2017-07-06 17:07:28 +00:00
libphonenumber-dev \
sudo
COPY ./ /data/
RUN chown -R postgres:postgres /data/
# Patch the entrypoint script so it always initializes the DB.
RUN patch /usr/local/bin/docker-entrypoint.sh < /data/docker-entrypoint.patch
2017-07-06 17:07:28 +00:00
# Build pg_libphonenumber.
WORKDIR /data
RUN make && make install
2017-07-06 17:07:28 +00:00
CMD ["/data/run-tests.sh", "${PG_MAJOR}"]