ytdl-sub/Makefile
2022-05-20 12:52:58 -07:00

8 lines
155 B
Makefile

wheel:
python setup.py bdist_wheel
docker: wheel
cp dist/*.whl docker/root/
sudo docker build --no-cache -t ytdl-sub:0.1 docker/
.PHONY: wheel docker