From 469055a9a9c70f201d85ea3fabcfda1273ad6729 Mon Sep 17 00:00:00 2001 From: ChristoGrab Date: Fri, 22 Nov 2024 11:07:59 -0800 Subject: [PATCH] update SDM entrypoint --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d68c626fa..79d2880d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,6 @@ COPY airbyte_cdk ./airbyte_cdk # Build and install the package RUN pip install dist/*.whl -ENTRYPOINT ["poetry", "run", "source-declarative-manifest"] +# Set the entrypoint +ENV AIRBYTE_ENTRYPOINT="source-declarative-manifest" +ENTRYPOINT ["source-declarative-manifest"]