deniskuzZ commented on code in PR #6435:
URL: https://github.com/apache/hive/pull/6435#discussion_r3101233888
##########
packaging/src/docker/Dockerfile:
##########
@@ -67,19 +67,25 @@ RUN tar -xzv \
tar -xzv \
--exclude="apache-tez-$TEZ_VERSION-bin/share" \
-f /opt/apache-tez-$TEZ_VERSION-bin.tar.gz \
- -C /opt
+ -C /opt; \
+ mkdir -p /opt/tez-snapshot;
FROM eclipse-temurin:21-jdk-ubi9-minimal AS run
ARG UID=1000
ARG HADOOP_VERSION
ARG HIVE_VERSION
ARG TEZ_VERSION
+ARG TEZ_SNAPSHOT_VERSION=
+ARG
TEZ_SNAPSHOT_REPO_URL=https://repository.apache.org/content/repositories/snapshots
+
+# When snapshot jars are included, client version must match the snapshot
version.
+ENV TEZ_CLIENT_VERSION=${TEZ_SNAPSHOT_VERSION:-$TEZ_VERSION}
Review Comment:
if version check makes sense, let's keep the env var
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]