* github schema * GitHub dockerfile * formatted * 🎉Source HubSpot: Adds form_submission and property_history streams (#7787) * Began working on HubSpot Form Submission Connector * Added Property History Stream * Added form_guid to as value to form_submissions_stream. * Finalized the Form Submission Stream * Added documentation and test config * Corrected Version Number * updated version number to 0.1.25 * removed or none worked on tests * Changed code due to review comments & merges * readded Propertyhistory after merging * bump connector version Co-authored-by: Tino Merl <tino.merl@park-sieben.com> Co-authored-by: Marcos Marx <marcosmarxm@gmail.com> * bump connector version Co-authored-by: Tino Merl <35485536+tinomerl@users.noreply.github.com> Co-authored-by: Tino Merl <tino.merl@park-sieben.com> Co-authored-by: Marcos Marx <marcosmarxm@gmail.com>
17 lines
474 B
Docker
17 lines
474 B
Docker
FROM python:3.7-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_github ./source_github
|
|
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.2.15
|
|
LABEL io.airbyte.name=airbyte/source-github
|