blob: 4f03a306059be2db9b58522c19932e8016b1a15d [file] [log] [blame]
efiacor9b532682019-11-06 11:08:54 +00001# ============LICENSE_START===================================================
2# Copyright (C) 2019 Nordix Foundation.
3# ============================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=====================================================
18
19FROM python:3.7-slim-buster
20MAINTAINER lego@est.tech
21
22ENV PMSHUSER=pmsh \
23 APPDIR="/opt/app/pmsh" \
efiacor9b532682019-11-06 11:08:54 +000024 # set PATH & PYTHONPATH vars
25 PATH=/usr/local/lib/python3.7/bin:$PATH:$APPDIR/bin \
26 PYTHONPATH=/usr/local/lib/python3.7/site-packages:./mod:./:$PYTHONPATH:$APPDIR/bin \
27 REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
28
29WORKDIR $APPDIR
30
31 # add non root user & group
32RUN addgroup --system $PMSHUSER && adduser --ingroup $PMSHUSER --system $PMSHUSER && \
33 # create logs dir and change permissions
34 mkdir -p /var/log/ONAP/$PMSHUSER/logs && \
35 chmod a+w /var/log/ONAP/$PMSHUSER/logs
36
37COPY setup.py ./
38COPY requirements.txt ./
39COPY ./pmsh_service ./bin/
40
41 # run the pip install
42RUN pip install --upgrade pip && \
43 pip install -r requirements.txt && \
44 pip install -e . && \
45 # change own & perms on entrypoint
46 chown -R $PMSHUSER:$PMSHUSER $APPDIR && \
47 chmod 500 $APPDIR/bin/*.py
48
49# set to non root user
50USER $PMSHUSER
51
52# run the app
53ENTRYPOINT ["python", "./bin/pmsh_service.py"]