Skip to content

Commit

Permalink
lecture05 Build own hive metastore docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Svane20 committed Aug 27, 2024
1 parent 5a6ffb5 commit 256757c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/hive-metastore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ENV HIVE_HOME=/opt/hive-${HIVE_VERSION}
# Install dependencies
RUN apt-get update && apt-get install -y wget tar procps

# Download and install Hive
RUN wget https://downloads.apache.org/hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz && \
# Download and install Hive from Apache Archive
RUN wget https://archive.apache.org/dist/hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz && \
tar -xzvf apache-hive-${HIVE_VERSION}-bin.tar.gz -C /opt && \
mv /opt/apache-hive-${HIVE_VERSION}-bin /opt/hive-${HIVE_VERSION} && \
rm apache-hive-${HIVE_VERSION}-bin.tar.gz
Expand Down

0 comments on commit 256757c

Please sign in to comment.