1
0

Fix multiple issues when using build_local_docker_images for setting up the demo

Details here - https://issues.apache.org/jira/browse/HUDI-98
This commit is contained in:
Bhavani Sudha Saktheeswaran
2019-04-11 17:39:13 -07:00
committed by n3nash
parent a8feee9293
commit 83b6aa5e91
4 changed files with 5 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
FROM frolvlad/alpine-oraclejdk8
FROM frolvlad/alpine-java
MAINTAINER Hoodie
USER root

View File

@@ -17,7 +17,7 @@ COPY execute-step.sh /
COPY finish-step.sh /
RUN echo "Installing Spark-version (${SPARK_VERSION})" \
&& wget http://apache.mirror.iphh.net/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz \
&& wget http://archive.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz \
&& tar -xvzf spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz \
&& mv spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION} /opt/spark \
&& rm spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz \

View File

@@ -82,6 +82,7 @@
<include>org.apache.hive:hive-metastore</include>
<include>org.apache.hive:hive-jdbc</include>
<include>com.twitter:chill_2.11</include>
<include>com.twitter:chill-java</include>
</includes>
</artifactSet>
<relocations>

View File

@@ -144,12 +144,6 @@
<artifactId>avro</artifactId>
</dependency>
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -216,6 +210,8 @@
<include>com.twitter.common:objectsize</include>
<include>commons-logging:commons-logging</include>
<include>com.twitter:chill_2.11</include>
<include>com.twitter:chill-java</include>
<include>com.esotericsoftware:kryo-shaded</include>
</includes>
</artifactSet>
<finalName>${project.artifactId}-${project.version}</finalName>