mstein11 commented on issue #10777:
URL: https://github.com/apache/druid/issues/10777#issuecomment-1209170970
We build an own image of druid with the following dockerfile:
```
FROM apache/druid:0.22.1 as builder
FROM ubi8-openjdk-8:1.3
COPY --chown=1000:0 --from=builder /opt /opt
COPY --from=builder /druid.sh /druid.sh
USER root
RUN dnf install procps -y
RUN dnf install iproute -y
RUN dnf install less -y
USER 1000
VOLUME /opt/druid/var
WORKDIR /opt/druid
ENTRYPOINT ["/druid.sh"]
```
Hope this helps!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]