diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2018-04-08 12:48:47 +0800 |
---|---|---|
committer | zhihui wu <wu.zhihui1@zte.com.cn> | 2018-04-08 12:48:47 +0800 |
commit | b34030013f9af4c40fd79850a85957c842e76595 (patch) | |
tree | b86669899386054b9de16f5847209a1b581fc080 /contrib/nettest/Dockerfile | |
parent | 357bffcd84ad61d1421eb8b63cdc549d69d365a7 (diff) |
delete the code which will not included in Fraser
- legacy code
- the function of network test isn't completed.
- outdated documents
Change-Id: Id59d35f6985d876ef09aef0845dde38ae19b589a
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'contrib/nettest/Dockerfile')
-rw-r--r-- | contrib/nettest/Dockerfile | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/contrib/nettest/Dockerfile b/contrib/nettest/Dockerfile deleted file mode 100644 index 272569d6..00000000 --- a/contrib/nettest/Dockerfile +++ /dev/null @@ -1,47 +0,0 @@ -########################################################## -# Dockerfile to run a flask-based web application# Based on an ubuntu:16.04 -########################################################## - -# Set the base image to use to centos -FROM ubuntu:16.04 - -# Set the file maintainer -MAINTAINER Qiang.Dai@spirent.com -LABEL version="0.1" description="Spirent networking test Docker container" - -# Set env varibles used in this Dockerfile (add a unique prefix, such as DOCKYARD) -# Local directory with project source -ENV DOCKYARD_SRC=nettest \ - DOCKYARD_SRCHOME=/opt \ - DOCKYARD_SRCPROJ=/opt/nettest - -# Update the defualt application repository source list -RUN apt-get update && apt-get install -y \ - gcc \ - python-dev \ - python-pip \ - python-setuptools \ - --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* - -# Copy application source code to SRCDIR -COPY $DOCKYARD_SRC $DOCKYARD_SRCPROJ - -# Create application subdirectories -WORKDIR $DOCKYARD_SRCPROJ -RUN mkdir -p log -VOLUME ["$DOCKYARD_SRCPROJ/log/"] - -# Install Python dependencies -RUN pip install -U pip \ - && pip install -U setuptools \ - && pip install -r $DOCKYARD_SRCPROJ/requirements.txt - -# Port to expose -EXPOSE 5000 - -# Copy entrypoint script into the image -WORKDIR $DOCKYARD_SRCPROJ - -#CMD ["/bin/bash"] -CMD ["/bin/bash", "start.sh"] |