-
Bug
-
Resolution: Cannot Reproduce
-
Major
-
None
-
1.5.4.Final
-
None
-
False
-
False
-
Step 7.6.1
```
FROM registry.redhat.io/amq7/amq-streams-kafka-28-rhel8:1.8.0
USER root:root
COPY ./debezium-connector-postgres/ /opt/kafka/plugins/
USER 1001
```
Using the above docker file lead to copying the folder contents to plugins directory
Should be changed to:
```
FROM registry.redhat.io/amq7/amq-streams-kafka-28-rhel8:1.8.0
USER root:root
COPY ./debezium-connector-postgres/ /opt/kafka/plugins/debezium-connector-postgres/
```
USER 1001
```