/ source-twitter-ads / Dockerfile
Dockerfile
1  FROM airbyte/python-connector-base:1.1.0@sha256:dd17e347fbda94f7c3abff539be298a65af2d7fc27a307d89297df1081a45c27
2  
3  COPY . ./airbyte/integration_code
4  RUN pip install ./airbyte/integration_code requests-oauthlib
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"]