From a8b1b2b6cfa3c342b486bbabb290a3add3551489 Mon Sep 17 00:00:00 2001 From: Christo Grabowski <108154848+ChristoGrab@users.noreply.github.com> Date: Fri, 22 Nov 2024 14:05:41 -0800 Subject: [PATCH] fix: update source-declarative-manifest entrypoint (#84) Co-authored-by: Aaron ("AJ") Steers --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d68c626f..79d2880d 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"]