forked from netmanagers/salt-image-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dnf
49 lines (46 loc) · 2.45 KB
/
Dockerfile.dnf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
ARG DISTRO_NAME
ARG DISTRO_VERSION
FROM $DISTRO_NAME:$DISTRO_VERSION
LABEL maintainer="[email protected]"
# Both args before the `FROM` are repeated here so that they can be used below, as required
# https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact
ARG DISTRO_NAME
ARG DISTRO_VERSION
ARG SALT_INSTALL_METHOD
ARG SALT_VERSION
ARG PYTHON_VERSION
ARG EXTRA_PACKAGES=""
# Provide packages used by `kitchen-docker` to speed up testing
# These are now expected by the `ssf` customised `kitchen-docker` being used:
# - https://gitlab.com/saltstack-formulas/infrastructure/kitchen-docker/-/compare/master...ssf
ARG KITCHEN_DOCKER_PACKAGES="curl openssh-clients openssh-server sudo which"
ARG PKGS="${KITCHEN_DOCKER_PACKAGES} findutils git glibc-langpack-en net-tools python3-pip systemd udev ${EXTRA_PACKAGES}"
ARG SALT_REPO_URL=""
SHELL ["/bin/bash", "-x", "-o", "pipefail", "-c"]
# hadolint ignore=DL3041
RUN dnf -y update \
&& dnf -y install ${PKGS} --setopt=install_weak_deps=False \
&& dnf clean all \
# Install Salt using the bootstrap script (removing the 10 seconds delay to cancel the bootstrap)
&& curl -L https://raw.githubusercontent.com/saltstack/salt-bootstrap/develop/bootstrap-salt.sh | \
sed -e '/^\s\+echowarn "You have 10 seconds to cancel and stop the bootstrap process..."/,+2d' | \
sh -s -- ${SALT_REPO_URL} -XUdfPD -x python$PYTHON_VERSION $SALT_INSTALL_METHOD $SALT_VERSION \
# Disable Salt's service as we don't need it running
&& systemctl disable salt-minion.service > /dev/null 2>&1 \
# Use the `LEGACY` crypto policy since Kitchen testing currently relies on
# this keypair type (make the SSH policy in Fedora 33+ behave like Fedora 32)
&& dnf -y install crypto-policies-scripts \
&& update-crypto-policies --set LEGACY \
&& dnf clean all \
# Remove unnecessary getty and udev targets that result in high CPU usage when using
# multiple containers with Molecule or Kitchen (https://github.com/ansible/molecule/issues/1104)
&& rm -rf /var/cache/{salt,pacman} \
/usr/lib/systemd/system/systemd*udev* \
/usr/lib/systemd/system/getty.target \
/tmp/* \
&& (find / ! -path "/{proc,sys,dev}" -name "*.pyc"; \
find / ! -path "/{proc,sys,dev}" -name "__pycache__"; \
find /var/log -type f) \
| grep -v ^/proc | xargs rm -rf \
# Also obscure any `getty` binaries (https://github.com/moby/moby/issues/4040#issuecomment-339022455)
&& cp /bin/true /sbin/agetty