Skip to content

Commit

Permalink
Opensearch connector: Fixed Docker build issue
Browse files Browse the repository at this point in the history
Signed-off-by: Lalith Kota <[email protected]>
  • Loading branch information
lalithkota committed Jun 21, 2024
1 parent 7feb189 commit 0433038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
break
fi
done
if [ "$OS_KAFKA_CONNECTOR_DOCKER_BUILD" = "true" ]; then
if [ "$OS_KAFKA_CONNECTOR_DOCKER_BUILD" != "true" ]; then
echo "Nothing to build!"
exit 0;
fi
Expand Down
1 change: 1 addition & 0 deletions opensearch-kafka-connector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM maven:3.9.6-eclipse-temurin-21-alpine AS builder

ARG DEBEZIUM_VERSION=2.6.2.Final

COPY kafka-connect-transforms /kafka-connect-transforms
RUN cd /kafka-connect-transforms && \
mvn install -DskipTests && \
Expand Down

0 comments on commit 0433038

Please sign in to comment.