Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Fix gha and and #4

Merged
merged 7 commits into from
May 13, 2024
Merged
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
55 changes: 28 additions & 27 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,34 @@ LABEL org.opencontainers.image.description "An OpenShift Dev Spaces container im
USER 0

# install ansible-dev-tools specific packages
RUN \
dnf -y makecache && dnf -y update \
dnf install -y \
tar \
echo \
podman \
openssh-clients \
zsh \
which \
git \
dumb-init \
# ansible-pylibssh needs:
gcc \
git-core \
libssh-devel \
python3-markupsafe \
# ansible-navigator needs:
ncurses \
oniguruma-devel \
python3-bcrypt \
python3-cffi \
python3-pip \
python3-pyyaml \
python3-ruamel-yaml \
python3-wheel \
--exclude container-selinux \
&& dnf clean all
RUN <<EOF
set -e
dnf -y makecache
dnf -y update
dnf install -y \
tar \
podman \
fuse-overlayfs \
openssh-clients \
zsh \
util-linux-user \
which \
git \
dumb-init \
gcc \
git-core \
libssh-devel \
python3-markupsafe \
ncurses \
python3-bcrypt \
python3-cffi \
python3-pip \
python3-pyyaml \
python3-ruamel-yaml \
python3-wheel \
--exclude container-selinux
dnf clean all
EOF

COPY ./requirements.txt requirements.txt
COPY ./requirements.yml requirements.yml
Expand Down