tqdm/Dockerfile

5 lines
104 B
Docker
Raw Normal View History

2019-03-02 21:43:13 +00:00
FROM python:3.7-alpine
2020-11-15 18:58:09 +00:00
COPY dist/*.whl .
RUN pip install -U $(ls *.whl) && rm *.whl
2019-03-02 21:43:13 +00:00
ENTRYPOINT ["tqdm"]