1
0
mirror of synced 2026-01-01 18:02:53 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/Dockerfile
Artem Inzhyyants 7e232c5612 🚨🚨 Source Pipedrive: Remove followers_count field from Products stream (#27832)
* Source PipeDrive: update expected records

* Source PipeDrive: update `Products` schema

* Source PipeDrive: update docs

* Source Pipedrive: update docs

* Source Pipedrive: update test config

* Update acceptance-test-config.yml
2023-07-06 17:02:48 +02:00

17 lines
482 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_pipedrive ./source_pipedrive
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=1.0.0
LABEL io.airbyte.name=airbyte/source-pipedrive