-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7d4825
commit 404346d
Showing
3 changed files
with
20 additions
and
43 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
airbyte-integrations/connectors/source-zendesk-chat/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
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/* | ||
|
||
ENV CODE_PATH="source_zendesk_chat" | ||
ENV AIRBYTE_IMPL_MODULE="source_zendesk_chat" | ||
ENV AIRBYTE_IMPL_PATH="SourceZendeskChat" | ||
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main_dev.py" | ||
|
||
WORKDIR /airbyte/integration_code | ||
COPY $CODE_PATH ./$CODE_PATH | ||
COPY main_dev.py ./ | ||
COPY setup.py ./ | ||
RUN pip install . | ||
|
||
ENTRYPOINT ["python", "/airbyte/integration_code/main_dev.py"] | ||
|
||
LABEL io.airbyte.version=0.1.14 | ||
LABEL io.airbyte.name=airbyte/source-zendesk-chat |
41 changes: 0 additions & 41 deletions
41
airbyte-integrations/connectors/source-zendesk-chat/build_customization.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters