mirror of https://github.com/tqdm/tqdm.git
8 lines
163 B
Docker
8 lines
163 B
Docker
|
FROM python:3.7-alpine
|
||
|
COPY setup.py tqdm/
|
||
|
COPY requirements-dev.txt tqdm/
|
||
|
COPY README.rst tqdm/
|
||
|
COPY tqdm tqdm/tqdm
|
||
|
RUN pip install -U ./tqdm
|
||
|
ENTRYPOINT ["tqdm"]
|