image-classification-service/Dockerfile_tests
Julius Unverfehrt 48dd52131d Pull request #35: update test dockerfile
Merge in RR/image-prediction from make-sec-build-work to master

Squashed commit of the following:

commit 08149d3a99681f4900a7d4b6a5f656b1c25ebdb3
Merge: 76b5a45 0538377
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date:   Wed Sep 21 13:43:24 2022 +0200

    Merge branch 'master' of ssh://git.iqser.com:2222/rr/image-prediction into make-sec-build-work

commit 76b5a4504adc709107af9e5958970ec24ae3f5ef
Author: Julius Unverfehrt <julius.unverfehrt@iqser.com>
Date:   Wed Sep 21 13:41:46 2022 +0200

    update test dockerfile
2022-09-21 13:47:40 +02:00

32 lines
913 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 incl/pyinfra incl/pyinfra
COPY incl/pdf2image incl/pdf2image
COPY data data
COPY image_prediction image_prediction
COPY setup.py setup.py
COPY requirements.txt requirements.txt
COPY config.yaml config.yaml
COPY banner.txt banner.txt
# Install module & dependencies
RUN python3 -m pip install -r requirements.txt
RUN python3 -m pip install -r incl/pyinfra/requirements.txt
RUN python3 -m pip install -r incl/pdf2image/requirements.txt
RUN python3 -m pip install -e .
RUN python3 -m pip install -e incl/pyinfra
RUN python3 -m pip install -e incl/pdf2image
RUN apt update --yes
RUN apt install vim --yes
RUN apt install poppler-utils --yes
CMD coverage run -m pytest test/ --tb=native -q -s -vvv -x && coverage combine && coverage report -m && coverage xml