Newer
Older
Carlos Natalino
committed
FROM python:3-slim
# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
apt-get --yes --quiet --quiet install wget g++ && \
rm -rf /var/lib/apt/lists/*
# Set Python to show logs as they occur
ENV PYTHONUNBUFFERED=0
ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION='python'
Carlos Natalino
committed
# Download the gRPC health probe -- not needed here... health will be asserted using HTTP
# RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \
# wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
# chmod +x /bin/grpc_health_probe
# Get generic Python packages
RUN python3 -m pip install --upgrade pip setuptools wheel pip-tools
# Set working directory
WORKDIR /var/teraflow
# Create module sub-folders
RUN mkdir -p /var/teraflow/webui
# Get Python packages per module
COPY webui/requirements.in webui/requirements.in
RUN pip-compile --output-file=webui/requirements.txt webui/requirements.in
RUN python3 -m pip install -r webui/requirements.txt
# Add files into working directory
COPY common/. common
COPY context/__init__.py context/__init__.py
COPY context/proto/. context/proto
COPY context/client/. context/client
COPY device/__init__.py device/__init__.py
COPY device/proto/. device/proto
COPY device/client/. device/client
Carlos Natalino
committed
COPY webui/. webui
# Start webui service
ENTRYPOINT ["python", "-m", "webui.service"]