We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa309d4 commit 063909eCopy full SHA for 063909e
Dockerfile
@@ -32,17 +32,19 @@ RUN cd /pg && \
32
./configure --enable-cassert --enable-debug --prefix=/pg/install && \
33
make -j 4 install
34
35
-RUN mkdir /pg/data
36
ENV PATH /pg/install/bin:$PATH
37
ENV PGDATA /pg/data
+RUN mkdir PGDATA
38
39
# Here we can insert some ENV var to invalidate subsequent layers
40
41
RUN cd /pg/postgres_cluster/contrib/raftable && make install
42
43
RUN mkdir /pg/mmts
44
COPY ./ /pg/mmts/
45
-RUN cd /pg/mmts && USE_PGXS=1 RAFTABLE_PATH=/pg/postgres_cluster/contrib/raftable make install
+ENV RAFTABLE_PATH /pg/postgres_cluster/contrib/raftable
46
+ENV USE_PGXS 1
47
+RUN cd /pg/mmts && make clean && make install
48
49
ENTRYPOINT ["/pg/mmts/tests2/docker-entrypoint.sh"]
50
0 commit comments