subrepo: subdir: "apps/twscrape" merged: "e4dce5d3" upstream: origin: "https://github.com/vladkens/twscrape" branch: "main" commit: "e4dce5d3" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
12 lines
179 B
Docker
12 lines
179 B
Docker
ARG VER=3.12
|
|
|
|
FROM python:${VER}-alpine
|
|
RUN apk add git
|
|
|
|
WORKDIR /app
|
|
COPY pyproject.toml readme.md /app/
|
|
RUN pip install -e .[dev]
|
|
COPY . /app
|
|
|
|
CMD ["sh", "-c", "pytest tests/"]
|