Skip to content
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions edc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# syntax=docker/dockerfile:1
FROM stackable/image/java-base

ARG PRODUCT
ARG RELEASE

LABEL name="Hello World" \
maintainer="info@stackable.de" \
Comment thread
fhennig marked this conversation as resolved.
Outdated
vendor="Stackable GmbH" \
version="${PRODUCT}" \
release="${RELEASE}" \
summary="The Stackable image for Apache Druid." \
description="This image is deployed by the Stackable Operator for Apache Druid."
Comment thread
fhennig marked this conversation as resolved.
Outdated

# https://github.com/hadolint/hadolint/wiki/DL4006
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN microdnf update && \
microdnf clean all

USER stackable
WORKDIR /stackable

RUN curl -L https://repo.stackable.tech/repository/packages/edc/dataspace-connector-${PRODUCT}.jar -o connector.jar

CMD ["java", "-Dedc.fs.config=./mount/config/config.properties", "-jar", "connector.jar" ]
8 changes: 8 additions & 0 deletions edc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# EDC Connector Image

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should mention that it is not part of SDP. Please coordinate with @stackfab or @stefanigel on wording

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've labelled it as a "technology preview" component


Links:

- [The official Connector repo](https://github.com/eclipse-edc/Connector)
- [The IONOS S3 extension](https://github.com/Digital-Ecosystems/edc-ionos-s3)
- [Our EDC Operator](https://github.com/stackabletech/edc-operator/)
- [The EDC Connector build - our own](https://github.com/stackabletech/edc-operator/tree/main/edc-connector) based off of the IONOS Repo.
9 changes: 9 additions & 0 deletions image_tools/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@
},
],
},
{
"name": "edc",
"versions": [
{
"product": "77c6e17",
"java-base": "17",
},
],
},
{
"name": "hadoop",
"versions": [
Expand Down