mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 19:48:26 +00:00

* fix docker warning * for running actions --------- Co-authored-by: Akash Jain <15995028+akash-jain-10@users.noreply.github.com>
9 lines
290 B
Docker
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 |