Skip to content

Commit

Permalink
Fix: Hive version in the Airflow docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
izeigerman committed May 20, 2024
1 parent 8452cc7 commit 56cbf8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/airflow/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ RUN curl https://dlcdn.apache.org/hadoop/common/hadoop-3.3.6/hadoop-3.3.6.tar.gz
ENV HADOOP_HOME="/opt/hadoop"

# Install Hive
RUN curl https://dlcdn.apache.org/hive/hive-2.3.9/apache-hive-2.3.9-bin.tar.gz -o apache-hive-2.3.9-bin.tar.gz && \
tar xf apache-hive-2.3.9-bin.tar.gz -C /opt/ && \
mv /opt/apache-hive-2.3.9-bin /opt/hive
RUN curl https://dlcdn.apache.org/hive/hive-3.1.3/apache-hive-3.1.3-bin.tar.gz -o apache-hive-3.1.3-bin.tar.gz && \
tar xf apache-hive-3.1.3-bin.tar.gz -C /opt/ && \
mv /opt/apache-hive-3.1.3-bin /opt/hive

ENV HIVE_HOME="/opt/hive"

Expand Down

0 comments on commit 56cbf8b

Please sign in to comment.