Skip to content
Snippets Groups Projects

feat: add ansible creator image

Merged Ghost User requested to merge add-ansible-creator-image into master
3 files
+ 61
6
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 31
0
FROM quay.io/centos/centos:stream9
LABEL \
org.opencontainers.image.title="creator-ee" \
org.opencontainers.image.url="https://code.fbi.h-da.de/hdacloud/images" \
org.opencontainers.image.source="https://code.fbi.h-da.de/hdacloud/images"
RUN \
yum update -y && \
yum -y upgrade && \
yum install -y \
git-core \
podman \
python3 \
python3-pip \
&& yum clean all
RUN \
pip install \
dumb-init \
bcrypt \
cffi \
markupsafe \
pip \
pynacl \
pyrsistent \
pyyaml \
ruamel-yaml \
wheel \
ansible \
ansible-lint
Loading