Skip to content

Commit

Permalink
Add third party connectors source-kelkoo and source-criteo (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshearer authored Aug 29, 2023
1 parent 94bba87 commit c10b6c5
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
11 changes: 11 additions & 0 deletions airbyte-integrations/third-party/gjbakerross/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Building

These connectors are based on `source-criteo`/`source-kelkoo` from `gjbakerross`. The upstream sources including `Dockerfile` can be found here:
* https://github.com/gjbakerross/airbyte-source-criteo
* https://github.com/gjbakerross/airbyte-source-kelkoo

We build those repositories and push the artifacts to `ghcr.io/estuary/gjbakerross/source-criteo`/`source-kelkoo` with the following command:

```
docker buildx build --no-cache --platform linux/amd64 https://github.com/gjbakerross/airbyte-source-criteo.git -t ghcr.io/estuary/gjbakerross/source-criteo:dev --push
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ARG AIRBYTE_TO_FLOW_TAG="dev"
FROM ghcr.io/estuary/airbyte-to-flow:$AIRBYTE_TO_FLOW_TAG as airbyte-to-flow

FROM ghcr.io/estuary/gjbakerross/source-criteo:dev

COPY *.json ./
RUN mkdir -p ./streams
COPY streams/* ./streams

COPY --from=airbyte-to-flow /airbyte-to-flow ./
ENTRYPOINT ["/airbyte/integration_code/airbyte-to-flow", "--connector-entrypoint", "python /airbyte/integration_code/main.py"]

LABEL io.airbyte.version=v1
LABEL io.airbyte.name=estuary/source-criteo
LABEL FLOW_RUNTIME_PROTOCOL=capture
LABEL CONNECTOR_PROTOCOL=flow-capture
LABEL FLOW_RUNTIME_CODEC=json
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ARG AIRBYTE_TO_FLOW_TAG="dev"
FROM ghcr.io/estuary/airbyte-to-flow:$AIRBYTE_TO_FLOW_TAG as airbyte-to-flow

FROM ghcr.io/estuary/gjbakerross/source-kelkoo:dev

COPY *.json ./
RUN mkdir -p ./streams
COPY streams/* ./streams

COPY --from=airbyte-to-flow /airbyte-to-flow ./
ENTRYPOINT ["/airbyte/integration_code/airbyte-to-flow", "--connector-entrypoint", "python /airbyte/integration_code/main.py"]

LABEL io.airbyte.version=v1
LABEL io.airbyte.name=estuary/source-kelkoo
LABEL FLOW_RUNTIME_PROTOCOL=capture
LABEL CONNECTOR_PROTOCOL=flow-capture
LABEL FLOW_RUNTIME_CODEC=json
Empty file.

0 comments on commit c10b6c5

Please sign in to comment.