mirror of
https://github.com/jongracecox/anybadge.git
synced 2025-07-21 12:21:03 +02:00
* Make `build_examples.py` callable from python * Allow tests to run from outside project directory * Add invoke tasks * Add server tests * Run travis tests against wheel package instead of local code * Update `badge.write_badge()` to support `pathlib.Path` * Update `CONTRIBUTING.md`
9 lines
163 B
Docker
9 lines
163 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 ./
|