Trying to understand how to use linux capabilities when running in a container. I'm able to use CAP_DAC_OVERRIDE when running an ubuntu image on an ubuntu host:
FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install libcap2-bin -y
RUN setcap...