* 🐛 Source(Pipedrive): remove date-time format from schemas Pipedrive doesn't work with ISO format of date times. Example of format by Pipedrive: 2020-04-15 12:58:48 * chore: update changelog * chore: updated the source-pipedrive version * chore: update seed file Co-authored-by: Joël Luijmes <me@joell.dev>
17 lines
483 B
Docker
17 lines
483 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=0.1.12
|
|
LABEL io.airbyte.name=airbyte/source-pipedrive
|