tqdm/Dockerfile

5 lines
108 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 .
2020-11-15 21:57:29 +00:00
RUN pip install -U $(ls ./*.whl) && rm ./*.whl
2019-03-02 21:43:13 +00:00
ENTRYPOINT ["tqdm"]