mirror of
https://github.com/jongracecox/anybadge.git
synced 2025-07-21 04:11:05 +02:00
- Add `--version` to cli - Add invoke tasks: - `package.build` - `package.install` - `test.cli` - Refactor invoke task implementation - Refactor `run_pypi_tests.sh` - Split into separate files to support running locally
12 lines
231 B
Docker
12 lines
231 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 ./
|
|
COPY helpers.sh ./
|
|
COPY shell_tests.sh ./
|