Files
anybadge/docker/test/Dockerfile
2022-08-13 12:33:32 -07:00

10 lines
189 B
Docker

FROM python:3.10.0
WORKDIR /work
RUN apt update && pip install -U pip
COPY requirements.txt ./
RUN pip install -r ./requirements.txt
COPY run_docker_tests.sh ./
COPY run_pypi_tests.sh ./