-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDockerfile
41 lines (30 loc) · 1.64 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
FROM registry.access.redhat.com/rhel
# the following 'yum search' should not be needed, but the
# 'yum-config-manager --enable rhel-7-server-extras-rpms'
# doesn't seem to take effect unless this search is here
RUN yum search docker
# needed for python-docker-py and atomic
RUN yum-config-manager --enable rhel-7-server-extras-rpms
RUN yum update -y
# if you put these all on one line, yum doesn't report failure to install an rpm that docker notices
RUN yum install -y atomic
RUN yum install -y python-docker-py
RUN yum install -y python-setuptools
RUN yum install -y python2-devel
RUN yum install -y python-requests
RUN yum install -y python-magic
RUN yum install -y tar
RUN yum clean -y all
# We don't want to copy everything from the source directory
# and Docker COPY won't copy directories listed on the command line
# only their contents (stupid),
# so we copy each _directory_ individually and then all the _files_ together
COPY docs /src/insights-client/docs
COPY etc /src/insights-client/etc
COPY redhat_access_insights /src/insights-client/redhat_access_insights
COPY scripts /src/insights-client/scripts
COPY LICENSE MANIFEST.in setup.cfg setup.py /src/insights-client/
# install the client
# but delete the config directory's content because we must mount that from the host
RUN cd /src/insights-client; python setup.py install; rm -rf /etc/redhat-access-insights/*
LABEL RUN="docker run --name NAME --privileged=true -i -a stdin -a stdout -a stderr --rm -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/docker/:/var/lib/docker/ -v /dev/:/dev/ -v /etc/redhat-access-insights/:/etc/redhat-access-insights -v /etc/pki/:/etc/pki/ IMAGE"