Dockerfile
1  FROM airbyte/python-connector-base:1.1.0
2  
3  COPY . ./airbyte/integration_code
4  RUN pip install ./airbyte/integration_code
5  
6  # The entrypoint and default env vars are already set in the base image
7  ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
8  ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]