mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-03-09 19:15:50 +00:00
9 lines
348 B
Docker
9 lines
348 B
Docker
FROM mcr.microsoft.com/playwright/python:v1.50.0-noble
|
|
|
|
RUN mkdir -p /tests
|
|
COPY ./requirements.txt /tests/requirements.txt
|
|
WORKDIR /tests
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
ENTRYPOINT ["pytest", "--capture=tee-sys", "--tracing", "off", "--junit-xml=/tests/results/test-results-all.xml", "-s", "-vv"] |