Imri Paran d5bf30ccd3
MINOR: trino integration test (#16291)
* added trino integration test

* - removed warnings for classes which are not real tests
- removed "helpers" as its being used

* use a docker network instead of host

* print logs for hive failure

* removed superset unit tests

* try pinning requests for test

* try pinning requests for test

* wait for hive to be ready

* fix trino fixture

* - reduced testcontainers_config.max_tries to 5
- remove intermediate containers

* print with logs

* disable capture logging

* updated db host

* removed debug stuff

* removed debug stuff

* removed version pin for requests

* reverted superset

* ignore trino integration on python 3.8
2024-05-22 15:12:00 +00:00

9 lines
290 B
Docker

ARG BASE_IMAGE=bitsondatadev/hive-metastore:latest
FROM ${BASE_IMAGE}
COPY conf/metastore-site.xml /opt/apache-hive-metastore-3.0.0-bin/conf/metastore-site.xml
COPY entrypoint.sh /entrypoint.sh
ENV JDBC_CONNECTION_URL ""
ENV MINIO_ENDPOINT ""
USER root
RUN chmod +x /entrypoint.sh
USER hive