forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
5 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
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,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 | ||
``` |
17 changes: 17 additions & 0 deletions
17
airbyte-integrations/third-party/gjbakerross/airbyte-source-criteo/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,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.
17 changes: 17 additions & 0 deletions
17
airbyte-integrations/third-party/gjbakerross/airbyte-source-kelkoo/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,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.