Projet2-ChaineDeProd/Dockerfile
2023-12-21 10:54:43 +01:00

7 lines
215 B
Docker

FROM python:3.6-slim
COPY . /python-test-calculator
WORKDIR /python-test-calculator
RUN pip3 install --no-cache-dir -r requirements.txt
RUN ["pytest", "-v", "--junitxml=reports/result.xml"]
CMD tail -f /dev/nul