* Connector health: source hubspot, gitlab, snapchat-marketing: fix builds * #1955 source amazon ads: fix stream schemas * source amazon ads: upd changelog * source amazon ads: upd CAT config * upd backwards incompatible version * update metadata with breakingChanges entry * fix CATs * fix md
18 lines
486 B
Docker
18 lines
486 B
Docker
FROM python:3.9-slim
|
|
|
|
# Bash is installed for more convenient debugging.
|
|
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /airbyte/integration_code
|
|
COPY source_amazon_ads ./source_amazon_ads
|
|
COPY main.py ./
|
|
COPY setup.py ./
|
|
RUN pip install .
|
|
|
|
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
|
|
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
|
|
|
|
|
|
LABEL io.airbyte.version=3.0.0
|
|
LABEL io.airbyte.name=airbyte/source-amazon-ads
|