From 501d62d194a42c5c85f22d8208a4e1dd6d985492 Mon Sep 17 00:00:00 2001 From: Manjunath Ranganathaiah Date: Tue, 14 Apr 2020 21:23:12 +0000 Subject: Directory structure, build and dockerfile for resource sync microservice Issue-ID: MULTICLOUD-1005 Signed-off-by: Manjunath Ranganathaiah Change-Id: I22cbb8512d4ce0d5b9ce6d20a1b99e3e570db405 --- src/rsync/scripts/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/rsync/scripts/Dockerfile (limited to 'src/rsync/scripts') diff --git a/src/rsync/scripts/Dockerfile b/src/rsync/scripts/Dockerfile new file mode 100644 index 00000000..99df6cd9 --- /dev/null +++ b/src/rsync/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 9016 + +RUN groupadd -r onap && useradd -r -g onap onap + +WORKDIR /opt/multicloud/k8s/rsync +RUN chown onap:onap /opt/multicloud/k8s/rsync -R + +ADD --chown=onap ./rsync ./ + +USER onap + +CMD ["./rsync"] -- cgit 1.2.3-korg