Skip to content

Commit

Permalink
Upgrade Spark to 2.4.4 in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbelloch committed Oct 25, 2019
1 parent 878fec0 commit 283b7e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infra/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

ENV SPARK_HOME=/opt/spark
RUN mkdir -p /opt/spark && curl -s http://apache.rediris.es/spark/spark-2.4.0/spark-2.4.0-bin-hadoop2.7.tgz | tar -xz -C "${SPARK_HOME}" --strip-components=1
RUN mkdir -p /opt/spark && curl -s http://apache.rediris.es/spark/spark-2.4.4/spark-2.4.4-bin-hadoop2.7.tgz | tar -xz -C "${SPARK_HOME}" --strip-components=1
ENV PATH=$SPARK_HOME/bin:$SPARK_HOME/sbin:$PATH

ENV SPARK_NO_DAEMONIZE=true
Expand Down
8 changes: 4 additions & 4 deletions infra/docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ build:
docker build -t luisbelloch/spark .

tag:
docker tag luisbelloch/spark luisbelloch/spark:2.4.0
docker tag luisbelloch/spark luisbelloch/spark:2019.1
docker tag luisbelloch/spark luisbelloch/spark:2.4.4
docker tag luisbelloch/spark luisbelloch/spark:2019.2

push:
docker push luisbelloch/spark:2.4.0
docker push luisbelloch/spark:2019.1
docker push luisbelloch/spark:2.4.4
docker push luisbelloch/spark:2019.2
docker push luisbelloch/spark

list:
Expand Down

0 comments on commit 283b7e3

Please sign in to comment.