summary refs log tree commit diff
path: root/docker/Dockerfile-pgtests
blob: 7da8eeb9eb0e2f14efafc7a00b7d61d43db17ea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Use the Sytest image that comes with a lot of the build dependencies
# pre-installed
FROM matrixdotorg/sytest:latest

# The Sytest image doesn't come with python, so install that
RUN apt-get -qq install -y python python-dev python-pip

# We need tox to run the tests in run_pg_tests.sh
RUN pip install tox

ADD run_pg_tests.sh /pg_tests.sh
ENTRYPOINT /pg_tests.sh