tqdm/Dockerfile

8 lines
163 B
Docker
Raw Normal View History

2019-03-02 21:43:13 +00:00
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"]