/ source-google-store / Dockerfile
Dockerfile
1 FROM --platform=linux/amd64 airbyte/python-connector-base:1.1.0 2 3 COPY . ./airbyte/integration_code 4 RUN pip install ./airbyte/integration_code google-api-python-client 5 6 7 ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" 8 ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]