forked from github/multus-cni
23 lines
608 B
Docker
23 lines
608 B
Docker
# This Dockerfile is used to build the image available on DockerHub
|
|
FROM centos:centos7
|
|
|
|
# Add everything
|
|
ADD . /usr/src/multus-cni
|
|
|
|
ENV INSTALL_PKGS "git golang"
|
|
RUN rpm --import https://mirror.go-repo.io/centos/RPM-GPG-KEY-GO-REPO && \
|
|
curl -s https://mirror.go-repo.io/centos/go-repo.repo | tee /etc/yum.repos.d/go-repo.repo && \
|
|
yum install -y $INSTALL_PKGS && \
|
|
rpm -V $INSTALL_PKGS && \
|
|
cd /usr/src/multus-cni && \
|
|
./build && \
|
|
yum autoremove -y $INSTALL_PKGS && \
|
|
yum clean all && \
|
|
rm -rf /tmp/*
|
|
|
|
WORKDIR /
|
|
|
|
ADD ./images/entrypoint.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|