Skip to content

Commit

Permalink
revert source-zendesk-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Sep 19, 2023
1 parent 90499b5 commit 0ec7047
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 43 deletions.
20 changes: 20 additions & 0 deletions airbyte-integrations/connectors/source-zendesk-chat/Dockerfile
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

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,4 @@ data:
sl: 200
ql: 400
supportLevel: certified
connectorBuildOptions:
baseImage: "airbyte-python-connector-base:1.0.0"
metadataSpecVersion: "1.0"

0 comments on commit 0ec7047

Please sign in to comment.