Files
spoolman2/tests_integration/Dockerfile
2023-05-28 21:40:17 +02:00

10 lines
159 B
Docker

FROM python:3.11-alpine
COPY requirements.txt /tester/
WORKDIR /tester
RUN pip install -r requirements.txt
ENTRYPOINT [ "pytest", "--exitfirst", "tests" ]