docker top: unrecognized option: /
I have a Dockerfile FROM eclipse-temurin:17-jre-alpine LABEL authors="sort-architectures" WORKDIR /app/kafka COPY ./kafka-3.5.1-src . CMD ls -lisa bin | grep kafka-s ENTRYPOINT ["top", "-b"] but when I build it and run it docker build . docker run IMAGE-SHA256 I get the…