Skip to content
Snippets Groups Projects

create simple ansible image based on alpine

Merged Alexander Käb requested to merge generic-ansible-image into master
1 file
+ 18
0
Compare changes
  • Side-by-side
  • Inline
+ 18
0
FROM alpine:3.18
LABEL \
org.opencontainers.image.title="generic-ansible" \
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 apk add \
py3-pip \
openssh-client
RUN pip install \
python-gitlab \
ansible
WORKDIR /ansible
ENTRYPOINT [""]
\ No newline at end of file
Loading