From f6a8a8322d09d5f6012167d298dea6f0471cb82c Mon Sep 17 00:00:00 2001 From: Andrew Gauld Date: Fri, 27 Mar 2020 15:30:36 +0000 Subject: Update images to run as non-root Images updated and the new versions are: adapter.acumos:1.0.2 mod.distributorapi:1.0.1 mod.onboardingapi:2.12.1 mod.designtool-web:1.0.2 mod.genprocessor-job:1.0.1 mod.genprocessor-http:1.0.1 mod.runtime-web:1.0.2 Note: image names all start with "onap/org.onap.dcaegen2.platform." designtool-web was already running as a non-root user. The others have been changed to create user "dcaemod" and run as that user. The listen port numbers on mod.distributorapi, mod.onboardingapi, and mod.genprocessor-http are changed from 80 to 8080. URLs in designtool-web, distributorapi, and genprocessor-job are adjusted to reflect the new port numbers. Change-Id: I510122952666c21cb92f3f64552e99d50af7c355 Issue-ID: DCAEGEN2-2170 Signed-off-by: Andrew Gauld --- mod/distributorapi/Changelog.md | 10 ++++++++++ mod/distributorapi/Dockerfile | 9 +++++++-- mod/distributorapi/distributor/config.py | 2 +- mod/distributorapi/distributor/http.py | 2 +- mod/distributorapi/distributor/version.py | 2 +- mod/distributorapi/pom.xml | 2 +- 6 files changed, 21 insertions(+), 6 deletions(-) create mode 100644 mod/distributorapi/Changelog.md (limited to 'mod/distributorapi') diff --git a/mod/distributorapi/Changelog.md b/mod/distributorapi/Changelog.md new file mode 100644 index 0000000..2e0327b --- /dev/null +++ b/mod/distributorapi/Changelog.md @@ -0,0 +1,10 @@ +# Change Log +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [1.0.1] - 3/26/2020 + * Run as non-root +## [1.0.0] - 11/11/2019 + * Distributor API - initial version diff --git a/mod/distributorapi/Dockerfile b/mod/distributorapi/Dockerfile index cc10c68..f82607d 100644 --- a/mod/distributorapi/Dockerfile +++ b/mod/distributorapi/Dockerfile @@ -15,9 +15,14 @@ # ============LICENSE_END========================================================= FROM python:3.7-alpine +ARG UID=1000 +ARG GID=1000 COPY . /code WORKDIR /code -RUN pip install . -EXPOSE 80 +RUN pip install . && \ + addgroup -g $GID dcaemod && \ + adduser -s /bin/bash -u $UID -G dcaemod -D dcaemod +USER dcaemod +EXPOSE 8080 ENV DISTRIBUTOR_DEBUG=0 CMD start-distributor-api diff --git a/mod/distributorapi/distributor/config.py b/mod/distributorapi/distributor/config.py index 8d2cede..d83eee1 100644 --- a/mod/distributorapi/distributor/config.py +++ b/mod/distributorapi/distributor/config.py @@ -35,4 +35,4 @@ def init(): global onboarding_api_url onboarding_api_url = _grab_env("ONBOARDING_API_URL" - , default="http://onboarding-api/onboarding") + , default="http://onboarding-api:8080/onboarding") diff --git a/mod/distributorapi/distributor/http.py b/mod/distributorapi/distributor/http.py index 963a852..f1aa2fd 100644 --- a/mod/distributorapi/distributor/http.py +++ b/mod/distributorapi/distributor/http.py @@ -253,4 +253,4 @@ def start_http_server(): if is_debug(): _app.run(debug=True) else: - _app.run(host="0.0.0.0", port=80, debug=False) + _app.run(host="0.0.0.0", port=8080, debug=False) diff --git a/mod/distributorapi/distributor/version.py b/mod/distributorapi/distributor/version.py index 57c4da3..9da6f0f 100644 --- a/mod/distributorapi/distributor/version.py +++ b/mod/distributorapi/distributor/version.py @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============LICENSE_END========================================================= -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/mod/distributorapi/pom.xml b/mod/distributorapi/pom.xml index 3cfd949..45096b1 100644 --- a/mod/distributorapi/pom.xml +++ b/mod/distributorapi/pom.xml @@ -23,7 +23,7 @@ limitations under the License. org.onap.dcaegen2.platform.mod dcaegen2-platform-mod-distributorapi - 1.0.0 + 1.0.1-SNAPSHOT UTF-8 . -- cgit 1.2.3-korg