Skip to content

Commit

Permalink
Draft of ansible docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
fdurand committed Jul 6, 2023
1 parent 39cd42f commit 0ec4e87
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions containers/pfsetacls/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
ARG KNK_REGISTRY_URL
ARG IMAGE_TAG
FROM ${KNK_REGISTRY_URL}/pfdebian:${IMAGE_TAG}

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y gcc python-dev libkrb5-dev && \
apt-get install python3-pip -y && \
pip3 install --upgrade pip && \
pip3 install --upgrade virtualenv && \
pip3 install pywinrm[kerberos] && \
apt install krb5-user -y && \
pip3 install pywinrm && \
pip3 install ansible

RUN ansible-galaxy install arubanetworks.aoscx_role
RUN ansible-galaxy collection install cisco.ios
RUN ansible-galaxy collection install community.network
RUN ansible-galaxy collection install cisco.asa

0 comments on commit 0ec4e87

Please sign in to comment.