From d93e031ae82da0f1f08b065ac68423fcb861527b Mon Sep 17 00:00:00 2001 From: Akash-Jain Date: Tue, 29 Aug 2023 16:41:58 +0530 Subject: [PATCH] fix(CI): Dockerfiles version --- docker/docker-compose-quickstart/Dockerfile | 2 +- ingestion/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose-quickstart/Dockerfile b/docker/docker-compose-quickstart/Dockerfile index b94acb1331ac..002b7c2b9ad1 100644 --- a/docker/docker-compose-quickstart/Dockerfile +++ b/docker/docker-compose-quickstart/Dockerfile @@ -11,7 +11,7 @@ # Build stage FROM alpine:3.15 AS build -ENV RELEASE_URL="https://github.com/open-metadata/OpenMetadata/releases/download/1.1.3-release/openmetadata-1.1.3.0.tar.gz" +ENV RELEASE_URL="https://github.com/open-metadata/OpenMetadata/releases/download/1.1.3-release/openmetadata-1.1.3.tar.gz" RUN mkdir -p /opt/openmetadata && \ wget ${RELEASE_URL} && \ tar zxvf openmetadata-*.tar.gz -C /opt/openmetadata --strip-components 1 && \ diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index 1dbac54a0faa..3d1aef5b0b41 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -82,7 +82,7 @@ ENV PIP_NO_CACHE_DIR=1 ENV PIP_QUIET=1 RUN pip install --upgrade pip -RUN pip install "openmetadata-managed-apis~=1.1.2.0" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.9.txt" +RUN pip install "openmetadata-managed-apis~=1.1.3.0" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.3/constraints-3.9.txt" RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=1.1.3.0" # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593