summaryrefslogtreecommitdiffstats
path: root/res/docker/Dockerfile
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-04-18 11:41:07 +0800
committeryangyan <yangyanyj@chinamobile.com>2019-04-18 11:41:15 +0800
commiteea40da241e118b72b6fe37be1e56ea3b576173a (patch)
tree1c9f6825b2733784d9035ab6bb56fe5f596ce6ad /res/docker/Dockerfile
parent88f65672cc46fe654374d2f74c924f388929424a (diff)
Optimized docker file code
Change-Id: I5dc19e29da4d745d36287d3521a65170fddc7c15 Signed-off-by: yangyan <yangyanyj@chinamobile.com> Issue-ID: VFC-1361
Diffstat (limited to 'res/docker/Dockerfile')
-rw-r--r--res/docker/Dockerfile39
1 files changed, 2 insertions, 37 deletions
diff --git a/res/docker/Dockerfile b/res/docker/Dockerfile
index 2319d0b..79e4f83 100644
--- a/res/docker/Dockerfile
+++ b/res/docker/Dockerfile
@@ -1,48 +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
-RUN wget -q -O vfc-gvnfm-vnfres.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.gvnfm.vnfres.res&a=vfc-gvnfm-vnfres-res&v=LATEST&e=zip' && \
- unzip vfc-gvnfm-vnfres.zip && \
- rm -rf vfc-gvnfm-vnfres.zip
-
-RUN chown onap:onap -R /service /var/log
-
-WORKDIR /service/vfc/gvnfm/vnfres/res
-RUN pip install -r requirements.txt
-
-RUN apt-get --purge remove -y wget unzip gcc libssl-dev
+RUN sh /service/docker-env-conf.sh
EXPOSE 8802
USER onap