-
Notifications
You must be signed in to change notification settings - Fork 65
/
Dockerfile
42 lines (30 loc) · 1.1 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM python:3.6-slim-buster
LABEL maintainer "Chebrolu Harika <[email protected]>"
WORKDIR /root
# Some optional but recommended packages
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update -y \
&& apt-get install --no-install-recommends -y \
vim \
curl \
ansible \
git
RUN python -m pip install --upgrade pip
RUN pip install pyOpenSSL hpeOneView
ADD . oneview-ansible/
WORKDIR /root/oneview-ansible
# Adding hosts for convenience
RUN mkdir -p /etc/ansible
RUN echo [localhost] >> /etc/ansible/hosts
RUN echo localhost ansible_python_interpreter=python3 ansible_connection=local >> /etc/ansible/hosts
# packages to run tests
RUN cd /root/oneview-ansible/
RUN pip install -r test_requirements.txt
ENV ANSIBLE_LIBRARY=/root/oneview-ansible/library
ENV ANSIBLE_MODULE_UTILS=/root/oneview-ansible/library/module_utils/
# Clean and remove not required packages
RUN DEBIAN_FRONTEND=noninteractive \
apt-get autoremove -y && \
apt-get clean -y && \
rm -rf /var/cache/apt/archives/* /var/cache/apt/lists/* /tmp/* /root/cache/.
CMD [ "ansible-playbook", "--version" ]