forked from postgrespro/pg_query_state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.tmpl
38 lines (29 loc) · 881 Bytes
/
Dockerfile.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM postgres:${PG_VERSION}-alpine
# Install dependencies
RUN apk add --no-cache \
openssl curl git patch \
perl perl-ipc-run \
make musl-dev gcc bison flex coreutils \
zlib-dev libedit-dev \
clang clang-analyzer linux-headers \
python3 python3-dev py3-virtualenv;
# Install fresh valgrind
RUN apk add valgrind \
--update-cache \
--repository http://dl-3.alpinelinux.org/alpine/edge/main;
# Environment
ENV LANG=C.UTF-8 PGDATA=/pg/data
# Make directories
RUN mkdir -p ${PGDATA} && \
mkdir -p /pg/testdir
# Grant privileges
RUN chown postgres:postgres ${PGDATA} && \
chown postgres:postgres /pg/testdir && \
chmod -R a+rwx /usr/local/lib/postgresql && \
chmod a+rwx /usr/local/share/postgresql/extension
COPY run_tests.sh /run.sh
RUN chmod 755 /run.sh
ADD . /pg/testdir
WORKDIR /pg/testdir
USER postgres
ENTRYPOINT LEVEL=${LEVEL} USE_TPCDS=${USE_TPCDS} /run.sh