* Source Close.com: add human readable titles to `api-key` and `start_date` fields - Added `api-key` title: `API Key` - Added `start_date` title: `Replication Start Date` * update version to 0.4.1 in metadata.yaml * update version to 0.4.1 in Dockerfile * update close-com.md changelog to 0.4.1 * Update airbyte-integrations/connectors/source-close-com/source_close_com/spec.json Co-authored-by: Sherif A. Nada <snadalive@gmail.com> --------- Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
17 lines
482 B
Docker
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_close_com ./source_close_com
|
|
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.4.1
|
|
LABEL io.airbyte.name=airbyte/source-close-com
|