RASCSI/docker/pytest/Dockerfile
2023-02-03 21:41:18 -06:00

13 lines
280 B
Docker

FROM python:3.7-slim
ENV DOCKER=1
WORKDIR /src
COPY python/web/requirements-dev.txt /src/requirements-dev.txt
COPY python/web/pyproject.toml /src/pyproject.toml
COPY python/web/tests /src/tests
RUN pip install --no-cache-dir -r /src/requirements-dev.txt
ENTRYPOINT ["pytest"]