aboutsummaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-04-18 10:18:03 +0800
committeryangyan <yangyanyj@chinamobile.com>2019-04-18 10:18:12 +0800
commit2dd726212aa85dbce717d3b1b1c0753cfa365406 (patch)
tree0826615b0f831683164793221584a43f42d5729d /docker/Dockerfile
parent46901da51522e44fbac7290e28d72945b5ce47e1 (diff)
Optimized docker file code
Change-Id: Id2d67853d1ab9e741952ca2844abaa177aa41cd8 Signed-off-by: yangyan <yangyanyj@chinamobile.com> Issue-ID: VFC-1361
Diffstat (limited to 'docker/Dockerfile')
-rwxr-xr-xdocker/Dockerfile40
1 files changed, 2 insertions, 38 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 02327743..b0854803 100755
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,49 +1,13 @@
-FROM ubuntu:14.04
+FROM python:2-alpine
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
-
ENV http_proxy $HTTP_PROXY
ENV https_proxy $HTTPS_PROXY
-
-RUN sed -i "s|set compatible|set nocompatible|" /etc/vim/vimrc.tiny
-RUN echo "set backspace=2" >> /etc/vim/vimrc.tiny
-
-RUN apt-get update && \
- apt-get install -y wget unzip gcc libssl-dev && \
- apt-get install -y python-virtualenv && \
- apt-get install -y python-setuptools && \
- apt-get install -y python-dev && \
- apt-get install -y python-pip && \
- apt-get install -y gcc && \
- apt-get install -y libmysqlclient-dev && \
- apt-get install -y mysql-client && \
- apt-get install -y wget && \
- apt-get install -y unzip && \
- apt-get install -y curl && \
- apt-get install -y build-essential && \
- apt-get install -y libffi-dev && \
- groupadd -r onap && useradd -r -g onap onap && \
- chmod u+w /etc/sudoers && \
- sed -i '/User privilege/a\\onap ALL=(ALL:ALL) NOPASSWD:ALL' /etc/sudoers && \
- chmod u-x /etc/sudoers
-
ADD . /service
WORKDIR /service
-# get binary zip from nexus - vfc-nfvo-lcm
-RUN wget -q -O vfc-nfvo-lcm.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.lcm&a=vfc-nfvo-lcm&v=LATEST&e=zip' && \
- unzip vfc-nfvo-lcm.zip && \
- rm -rf vfc-nfvo-lcm.zip
-
-# change user:group
-RUN chown onap:onap -R /service /var/log
-
-WORKDIR /service/vfc/nfvo/lcm
-RUN pip install --upgrade setuptools pip && \
- pip install --pre -r requirements.txt
-
-RUN apt-get --purge remove -y wget unzip gcc libssl-dev
+RUN sh /service/docker-env-conf.sh
EXPOSE 8403
USER onap