* Source Freshservice API: change field data type from integer to string to match API * Source Freshservice API: correct data types for phone number fields * Source Freshservice API: correct data types for phone number fields * add missing testing dependencies * remove unnecessary install * Source Freshservice: add stream for customer satisfaction survey responses * version bump * fix: linting * update integration test files with new stream * bump dockerfile, readme and metadata.yaml * fix dockerfile and broken cat schema file * Automated Change * Automated Change * fix dockerfile whitespace and add null to schema fields for csat stream * Automated Change * Update freshservice.md * Automated Change --------- Co-authored-by: Adam Roderick <aroder@gmail.com> Co-authored-by: Adam Roderick <23650+aroder@users.noreply.github.com> Co-authored-by: sajarin <sajarin@users.noreply.github.com> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
17 lines
491 B
Docker
17 lines
491 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_freshservice ./source_freshservice
|
|
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.1.0
|
|
LABEL io.airbyte.name=airbyte/source-freshservice
|