24 lines
566 B
Plaintext
24 lines
566 B
Plaintext
ARG BASE_ROOT="nexus.iqser.com:5001/red/"
|
|
ARG VERSION_TAG="dev"
|
|
|
|
FROM ${BASE_ROOT}image-prediction:${VERSION_TAG}
|
|
|
|
WORKDIR /app/service
|
|
|
|
COPY src src
|
|
COPY data data
|
|
COPY image_prediction image_prediction
|
|
COPY setup.py setup.py
|
|
COPY requirements.txt requirements.txt
|
|
COPY config.yaml config.yaml
|
|
|
|
# Install module & dependencies
|
|
RUN python3 -m pip install -e .
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
RUN apt update --yes
|
|
RUN apt install vim --yes
|
|
RUN apt install poppler-utils --yes
|
|
|
|
CMD coverage run -m pytest test/ -x && coverage report -m && coverage xml
|