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

Commit

Permalink
Fix gha and and (#4)
Browse files Browse the repository at this point in the history
* Disable cahce for a bit

* Fix missing &&

* Update containerfile

* Rmove inline comments

* Remove onigorama and add set -e
  • Loading branch information
cidrblock authored May 13, 2024
1 parent 39439cd commit 19d6270
Showing 1 changed file with 28 additions and 27 deletions.
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

0 comments on commit 19d6270

Please sign in to comment.