Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

build:
docker build --network=host alpine/.
docker build --network=host centos7/.
docker build --network=host centos8/.
docker build --network=host almalinux/.
docker build --network=host debian/.
docker build --network=host opensuse/.
docker build --network=host ubuntu/.
47 changes: 47 additions & 0 deletions almalinux/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
FROM almalinux:latest
LABEL maintainer "PyContribs <pycontribs@googlegroups.com>"

ENV CRYPTOGRAPHY_DONT_BUILD_RUST 1
ENV PATH="${PATH}:/root/.local/bin"

RUN \
dnf update --assumeyes && \
dnf install --assumeyes epel-release && \
dnf install --assumeyes \
gcc \
git \
nmap-ncat bind-utils \
openssl-devel \
python3 \
python3-appdirs \
python3-arrow \
python3-certifi \
python3-click \
python3-devel \
python3-filelock \
python3-future \
python3-libselinux \
python3-pathspec \
python3-pexpect \
python3-pip \
python3-pluggy \
python3-psutil \
python3-pycparser \
python3-pyyaml \
python3-requests \
python3-sh \
python3-tabulate \
python3-toml \
sudo \
which \
&& \
if [ ! -e /usr/bin/python ]; then ln -sf "$(which python3)" /usr/bin/python ; fi && \
python3 -m pip install --no-cache-dir --upgrade pipx && \
python3 -m pipx install ansible && \
python3 -m pipx install ansible-base && \
python3 -m pipx install ansible-lint && \
python3 -m pipx install yamllint && \
dnf clean all && \
rm -rf /var/cache/dnf/*

ENV SHELL /bin/bash