mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 21:37:31 +08:00
15 lines
260 B
Docker
15 lines
260 B
Docker
# TEST
|
|
FROM python:3.11-slim-bullseye
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY Pipfile .
|
|
|
|
RUN pip3 install --upgrade pip &&\
|
|
pip3 install pipenv &&\
|
|
pipenv install --dev
|
|
|
|
COPY tests ./tests
|
|
|
|
ENTRYPOINT ["pipenv", "run", "pytest", "--junit-xml=results/results.xml"]
|