RUN cd src/ovnaction && make all
RUN cd src/clm && make all
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
WORKDIR /opt/emco
RUN groupadd -r emco && useradd -r -g emco emco
pushd $k8s_path/src/k8splugin/
pwd
# mount directory and build in container (thus not relying on the state of the runner)
- docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.14 make
+ docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp nexus3.onap.org:10001/golang:1.14.1 make
popd
}
-FROM ubuntu:18.04 as base
+FROM nexus3.onap.org:10001/ubuntu:18.04 as base
ARG KUD_ENABLE_TESTS=false
ARG KUD_PLUGIN_ENABLED=false
ARG CONTAINER_RUNTIME=docker
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ENV IAVF_DRIVER_VERSION=4.0.2
ENV IAVF_DRIVER_DOWNLOAD_URL=https://downloadmirror.intel.com/30305/eng/iavf-${IAVF_DRIVER_VERSION}.tar.gz
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ENV QAT_DRIVER_VERSION=1.7.l.4.12.0-00011
ENV QAT_DRIVER_DOWNLOAD_URL=https://01.org/sites/default/files/downloads/qat${QAT_DRIVER_VERSION}.tar.gz
-FROM ubuntu:18.04 as builder
+FROM nexus3.onap.org:10001/ubuntu:18.04 as builder
MAINTAINER Victor Morales <electrocucaracha@gmail.com>
ENV demo_artifacts_version "1.6.0"
-FROM ubuntu:18.04 as builder
+FROM nexus3.onap.org:10001/ubuntu:18.04 as builder
MAINTAINER Victor Morales <electrocucaracha@gmail.com>
ENV demo_artifacts_version "1.6.0"
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
MAINTAINER Ritu Sood <ritu.sood@intel.com>
COPY init.sh /opt/init.sh
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
MAINTAINER Victor Morales <electrocucaracha@gmail.com>
ENV VERSION "19.01.2-release"
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM python:2.7
+FROM nexus3.onap.org:10001/python:2.7
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
-FROM openwrt-1806-4-base
+FROM nexus3.onap.org:10001/openwrt-1806-4-base
#EXPOSE 80
ENV http_proxy={docker_proxy}
-FROM openwrt-1806-4-base
+FROM nexus3.onap.org:10001/openwrt-1806-4-base
#EXPOSE 80
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
-FROM golang:1.14.1
+FROM nexus3.onap.org:10001/golang:1.14.1
WORKDIR /go/src/github.com/onap/multicloud-k8s/src/monitor
COPY ./ ./
RUN make all
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
WORKDIR /opt/monitor
RUN groupadd -r monitor && useradd -r -g monitor monitor
USER monitor
ENTRYPOINT ["/opt/monitor/monitor"]
-
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
USER onap
-CMD ["./orchestrator"]
\ No newline at end of file
+CMD ["./orchestrator"]
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
# ========================================================================
# => Build container
-FROM node:alpine as builder
+FROM nexus3.onap.org:10001/node:alpine as builder
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN REACT_APP_VERSION=v1.2.0 npm run build
# => Run container
-FROM nginx:1.15.2-alpine
+FROM nexus3.onap.org:10001/nginx:1.15.2-alpine
# Nginx config
COPY default.conf /etc/nginx/conf.d/
# limitations under the License.
# ========================================================================
-FROM golang:1.14.1
+FROM nexus3.onap.org:10001/golang:1.14.1
# Set the Current Working Directory inside the container
WORKDIR /src
COPY ./ ./
-RUN make all
+RUN make all
# Build the Go app
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
WORKDIR /opt/emco
RUN groupadd -r emco && useradd -r -g emco emco
RUN chown emco:emco /opt/emco -R