зеркало из
https://github.com/viginum-datalab/twscrape.git
synced 2025-10-28 20:54:24 +02:00
12 строки
181 B
Docker
12 строки
181 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 python --version; pytest tests/
|