We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f5a38 commit 02049e1Copy full SHA for 02049e1
Dockerfile.tmpl
@@ -35,4 +35,4 @@ ADD . /pg/testdir
35
WORKDIR /pg/testdir
36
37
USER postgres
38
-ENTRYPOINT LEVEL=${LEVEL} /run.sh
+ENTRYPOINT LEVEL=${LEVEL} USE_TPCDS=${USE_TPCDS} /run.sh
mk_dockerfile.sh
@@ -9,10 +9,16 @@ if [ -z ${LEVEL+x} ]; then
9
LEVEL=scan-build
10
fi
11
12
+if [ -z ${USE_TPCDS+x} ]; then
13
+ USE_TPCDS=0
14
+fi
15
+
16
echo PG_VERSION=${PG_VERSION}
17
echo LEVEL=${LEVEL}
18
+echo USE_TPCDS=${USE_TPCDS}
19
20
sed \
21
-e 's/${PG_VERSION}/'${PG_VERSION}/g \
22
-e 's/${LEVEL}/'${LEVEL}/g \
23
+ -e 's/${USE_TPCDS}/'${USE_TPCDS}/g \
24
Dockerfile.tmpl > Dockerfile
0 commit comments