diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-06-12 00:45:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-12 00:45:26 +0000 |
commit | 1e198865c9740fde9a5331be4e81df4932108fbc (patch) | |
tree | b3a1668417e925a99fb4da68b87cca869fec51b8 | |
parent | 1e5858f4ab510acd71272a53cfddce8d945daad0 (diff) | |
parent | 6203e6a8309dcfa4b8f6b6cb0453d2b43dd8ab3f (diff) |
Merge "Add Dockerfile for v2 Microservices"
-rw-r--r-- | build/Dockerfile | 37 | ||||
-rw-r--r-- | build/Readme.md | 4 | ||||
-rwxr-xr-x | build/entrypoint | 35 |
3 files changed, 76 insertions, 0 deletions
diff --git a/build/Dockerfile b/build/Dockerfile new file mode 100644 index 00000000..ff9e8572 --- /dev/null +++ b/build/Dockerfile @@ -0,0 +1,37 @@ +# SPDX-license-identifier: Apache-2.0 +############################################################################## +# Copyright (c) 2018 +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +FROM golang:1.14.1 + +WORKDIR /go/src/github.com/onap/multicloud-k8s +COPY ./ ./ +RUN cd src/orchestrator && make all +RUN cd src/ncm && make all +RUN cd src/dcm && make all +RUN cd src/rsync && make all +RUN cd src/ovnaction && make all +RUN cd src/clm && make all + +FROM ubuntu:16.04 + +WORKDIR /opt/mco +RUN groupadd -r mco && useradd -r -g mco mco +RUN chown mco:mco /opt/mco -R +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/orchestrator/orchestrator ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/ncm/ncm ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/dcm/dcm ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/rsync/rsync ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/ovnaction/ovnaction ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/src/clm/clm ./ +COPY --chown=mco --from=0 /go/src/github.com/onap/multicloud-k8s/build/entrypoint ./ + +USER mco + +ENTRYPOINT ["./entrypoint"] + diff --git a/build/Readme.md b/build/Readme.md new file mode 100644 index 00000000..193c0ea5 --- /dev/null +++ b/build/Readme.md @@ -0,0 +1,4 @@ +# Steps for building v2 API Docker Image +$cd k8s +$docker build -f build/Dockerfile . -t mco + diff --git a/build/entrypoint b/build/entrypoint new file mode 100755 index 00000000..bafb76e9 --- /dev/null +++ b/build/entrypoint @@ -0,0 +1,35 @@ +#!/bin/sh -e + +cmd=${1:-""} + +case ${cmd} in + "mco") + ./orchestrator + ;; + + "ncm") + ./ncm + ;; + + "dcm") + ./dcm + ;; + + "rsync") + ./rsync + ;; + + "ovnaction") + ./ovnaction + ;; + + "clm") + ./clm + ;; + + *) + echo "invalid command ${cmd}" + sleep infinity + +esac + |