Skip to content

Commit

Permalink
ORC-564: fixup from Alan's review.
Browse files Browse the repository at this point in the history
Signed-off-by: Owen O'Malley <omalley@apache.org>
  • Loading branch information
omalley committed Nov 1, 2019
1 parent a954681 commit 88e0b12
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/centos6/Dockerfile
Expand Up @@ -63,6 +63,8 @@ RUN cd snappy-1.1.3 && \
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/centos7/Dockerfile
Expand Up @@ -55,6 +55,8 @@ RUN cd snappy-1.1.3 && \
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/centos8/Dockerfile
Expand Up @@ -47,6 +47,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/debian10/Dockerfile
Expand Up @@ -37,6 +37,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/debian8/Dockerfile
Expand Up @@ -54,6 +54,8 @@ RUN cd snappy-1.1.3 && \
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/debian9/Dockerfile
Expand Up @@ -37,6 +37,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/ubuntu14/Dockerfile
Expand Up @@ -52,6 +52,8 @@ RUN cd snappy-1.1.3 && \
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/ubuntu16-clang5/Dockerfile
Expand Up @@ -43,6 +43,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/ubuntu16/Dockerfile
Expand Up @@ -37,6 +37,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down
2 changes: 2 additions & 0 deletions docker/ubuntu18/Dockerfile
Expand Up @@ -39,6 +39,8 @@ WORKDIR /root
VOLUME /root/.m2/repository
CMD if [ ! -d orc ]; then \
echo "No volume provided, building from apache master."; \
echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
git clone https://github.com/apache/orc.git -b master; \
fi && \
mkdir build && \
Expand Down

0 comments on commit 88e0b12

Please sign in to comment.