Fixes #18075: Dockerfile lint warning (#18077)

* fix docker warning

* for running actions

---------

Co-authored-by: Akash Jain <15995028+akash-jain-10@users.noreply.github.com>
This commit is contained in:
Ethan 2025-02-04 18:58:36 +09:00 committed by GitHub
parent ef131d7e20
commit 48700ae9ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@
FROM ubuntu:xenial-20210416 FROM ubuntu:xenial-20210416
# environment variables # environment variables
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND=noninteractive
# update # update
RUN apt update -y && \ RUN apt update -y && \

View File

@ -1,4 +1,4 @@
FROM mysql:8.3 as mysql FROM mysql:8.3 AS mysql
FROM apache/airflow:2.9.1-python3.10 FROM apache/airflow:2.9.1-python3.10
USER root USER root

View File

@ -1,4 +1,4 @@
FROM mysql:8.3 as mysql FROM mysql:8.3 AS mysql
FROM apache/airflow:2.9.1-python3.10 FROM apache/airflow:2.9.1-python3.10
USER root USER root

View File

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

View File

@ -1,5 +1,5 @@
ARG BASE_IMAGE ARG BASE_IMAGE
FROM ${BASE_IMAGE} FROM ${BASE_IMAGE}
ENV MINIO_ENDPOINT "" ENV MINIO_ENDPOINT=""
ENV HIVE_METASTORE_URI "" ENV HIVE_METASTORE_URI=""
COPY etc /etc/trino COPY etc /etc/trino