FROM registry.fedoraproject.org/fedora:latest RUN groupadd -g 1000 jenkins \ && useradd -c 'Jenkins user' -g 1000 -l -M -s /bin/sh -u 1000 jenkins COPY dch-root-ca.crt /etc/pki/ca-trust/source/anchors/ RUN update-ca-trust CMD ["python3", "-c", "import signal;signal.pause()"]