17 lines
261 B
Docker
17 lines
261 B
Docker
FROM fedora:34
|
|
|
|
RUN useradd -l -u 3000018 jenkins
|
|
|
|
RUN dnf install -y \
|
|
ansible \
|
|
findutils \
|
|
krb5-workstation \
|
|
openssh-clients \
|
|
python3-dns \
|
|
python3-netaddr \
|
|
--
|
|
|
|
COPY default-realm.krb5.conf /etc/krb5.conf.d/default-realm.conf
|
|
|
|
ENV LANG=en_US.UTF-8
|