blob: f9cb0729b160339b12c45598b047fa32aea8ff6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM python:3-slim-buster
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
COPY . /ansible
WORKDIR /ansible
RUN apt update -y; \
apt install -y git make sshpass; \
make install;
|