blob: 16cf59fd32992ff4593e223caf36c3a257d0e411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
FROM python:3.6
LABEL maintainer="sridhar.rao@spirent.com"
ENV GRPC_PYTHON_VERSION 1.4.0
RUN apt-get update && apt-get -y install python3-pip
RUN pip3 install grpcio==${GRPC_PYTHON_VERSION} grpcio-tools==${GRPC_PYTHON_VERSION}
RUN pip3 install paramiko
RUN pip3 install chainmap
RUN pip3 install oslo.utils
RUN pip3 install scp
WORKDIR /usr/src/app
COPY ./vsperf ./vsperf
VOLUME ["/usr/src/app/vsperf"]
EXPOSE 50052
CMD ["python3", "./vsperf/vsperf_controller.py"]
#CMD tail -f /dev/null
|