File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,17 @@ RUN cd /tmp && git clone -b $PLV8_BRANCH https://github.com/plv8/plv8.git \
12
12
&& cd /tmp/plv8 \
13
13
&& make all install
14
14
15
- # install pgTap and pg_prove
15
+ # install pg_prove
16
16
RUN curl -LO http://xrl.us/cpanm \
17
17
&& chmod +x cpanm \
18
- && ./cpanm TAP::Parser::SourceHandler::pgTAP \
19
- && git clone git://github.com/theory/pgtap.git \
20
- && cd pgtap && make
18
+ && ./cpanm TAP::Parser::SourceHandler::pgTAP
19
+
20
+
21
+ # install pgtap
22
+ ENV PGTAP_VERSION v0.95.0
23
+ RUN git clone git://github.com/theory/pgtap.git \
24
+ && cd pgtap && git checkout tags/$PGTAP_VERSION \
25
+ && make
21
26
22
27
ADD ./test.sh /test.sh
23
28
RUN chmod +x /test.sh
Original file line number Diff line number Diff line change 1
- NAME = walm/pgtap
1
+ NAME = walm/pgtap:0.95.0
2
2
3
3
all : build
4
4
You can’t perform that action at this time.
0 commit comments