From 1b9490671a415ef13eef11cfc12115063bb72db0 Mon Sep 17 00:00:00 2001 From: Renan Lima Date: Mon, 5 Aug 2024 16:34:36 -0300 Subject: [PATCH] add /opt/oracle from datahub-ingestion-base image --- docker/datahub-ingestion/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/datahub-ingestion/Dockerfile b/docker/datahub-ingestion/Dockerfile index b8eda548491224..0b47a0a04b2065 100644 --- a/docker/datahub-ingestion/Dockerfile +++ b/docker/datahub-ingestion/Dockerfile @@ -48,6 +48,8 @@ FROM base as full-install COPY --from=full-install-build ${VIRTUAL_ENV} ${VIRTUAL_ENV} +COPY --from=full-install-build /opt/oracle /opt/oracle + FROM base as dev-install # Dummy stage for development. Assumes code is built on your machine and mounted to this image. # See this excellent thread https://github.com/docker/cli/issues/1134