X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fcaas-cpupooler.git;a=blobdiff_plain;f=docker-build%2Fprocess-starter%2FDockerfile;h=0dbc5f942594048dee0bf20f740885cc4fb9e915;hp=92c0b758ba1cb4a26417c2bd6f2995178cc68971;hb=1c00762f8f3a78c0d6bd5ca177018effdbe10ca3;hpb=b9ac39f73c57f3438962b37d70d95fd1f63464f0 diff --git a/docker-build/process-starter/Dockerfile b/docker-build/process-starter/Dockerfile index 92c0b75..0dbc5f9 100644 --- a/docker-build/process-starter/Dockerfile +++ b/docker-build/process-starter/Dockerfile @@ -15,16 +15,16 @@ FROM centos:7.6.1810 MAINTAINER Balazs Szekeres -ARG DEPENDENCY_MANAGER -ENV DEP_VERSION=$DEPENDENCY_MANAGER -ARG CPUPOOLER -ENV CPUPOOLER_VERSION=$CPUPOOLER +ARG DEP_MAN_VERSION +ARG go_install_dir="/usr/local/go" +ARG go_version +ENV GOBIN=/usr/local/bin ENV GOPATH /build -ENV BUILD_DIR="$GOPATH/src/github.com/nokia/CPU-Pooler" +ENV PATH="$GOPATH/bin:$go_install_dir/bin:$PATH" +ARG CPUPOOLER_VERSION RUN yum update -y \ && yum install -y \ - go \ git \ bash \ glide \ @@ -38,18 +38,18 @@ RUN yum update -y \ make \ gcc \ gcc-c++ \ -&& 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 golang \ -&& curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 \ +&& mkdir -p $go_install_dir \ +&& curl -fsSL -k https://dl.google.com/go/go${go_version}.linux-amd64.tar.gz | tar zx --strip-components=1 -C ${go_install_dir} \ +&& curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v${DEP_MAN_VERSION}/dep-linux-amd64 \ && chmod +x /usr/local/bin/dep \ -&& mkdir -p $BUILD_DIR \ -&& git clone https://github.com/nokia/CPU-Pooler.git $BUILD_DIR \ -&& cd $BUILD_DIR \ +&& mkdir -p $GOPATH/src/github.com/nokia/CPU-Pooler \ +&& git clone https://github.com/nokia/CPU-Pooler.git $GOPATH/src/github.com/nokia/CPU-Pooler \ +&& cd $GOPATH/src/github.com/nokia/CPU-Pooler \ && git fetch --tags \ && git checkout ${CPUPOOLER_VERSION} \ && dep ensure --vendor-only \ # process-starter && CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o process-starter ./cmd/process-starter \ -&& mv $BUILD_DIR/process-starter /process-starter \ +&& mv $GOPATH/src/github.com/nokia/CPU-Pooler/process-starter /process-starter \ +&& rm -rf $go_install_dir \ && rm -rf $GOPATH