20 lines
477 B
Docker
Raw Permalink Normal View History

2018-02-09 19:21:56 -08:00
FROM postgres:10
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 10:07:28 -07:00
libphonenumber-dev \
sudo
COPY ./ /data/
RUN chown -R postgres:postgres /data/
# Patch the entrypoint script so it always initializes the DB.
2018-02-16 20:22:24 -08:00
RUN patch /usr/local/bin/docker-entrypoint.sh < /data/docker/docker-entrypoint.patch
2017-07-06 10:07:28 -07:00
# Build pg_libphonenumber.
WORKDIR /data
RUN make && make install
2017-07-06 10:07:28 -07:00
2018-02-16 20:22:24 -08:00
CMD ["/data/docker/run-tests.sh", "${PG_MAJOR}"]