diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-02-19 22:20:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-19 22:20:54 +0000 |
commit | 38df1b0ee0f1d6cd3bf11f94adf7c952f32c191c (patch) | |
tree | cec497029ee03ac626bcdc45d5cbd4542ae15412 /src/orchestrator/scripts/Dockerfile | |
parent | 260be59a550c865ce5be6b127e198c40fb45714d (diff) | |
parent | e1997606ab2174df37330b9a3ee6e213cf7e378f (diff) |
Merge "Add docker dev scripts expose mongo port"
Diffstat (limited to 'src/orchestrator/scripts/Dockerfile')
-rw-r--r-- | src/orchestrator/scripts/Dockerfile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/orchestrator/scripts/Dockerfile b/src/orchestrator/scripts/Dockerfile new file mode 100644 index 00000000..b894f47c --- /dev/null +++ b/src/orchestrator/scripts/Dockerfile @@ -0,0 +1,30 @@ +# SPDX-license-identifier: Apache-2.0 +############################################################################## +# Copyright (c) 2020 +# 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 ubuntu:18.04 + +ARG HTTP_PROXY=${HTTP_PROXY} +ARG HTTPS_PROXY=${HTTPS_PROXY} + +ENV http_proxy $HTTP_PROXY +ENV https_proxy $HTTPS_PROXY +ENV no_proxy $NO_PROXY + +EXPOSE 9015 + +RUN groupadd -r onap && useradd -r -g onap onap + +WORKDIR /opt/multicloud/k8s/orchestrator +RUN chown onap:onap /opt/multicloud/k8s/orchestrator -R + +ADD --chown=onap ./orchestrator ./ + +USER onap + +CMD ["./orchestrator"]
\ No newline at end of file |