Mercurial > code > home > repos > homeauto
view service/tinyScreen/makefile @ 1574:6618d481421c dependabot/pip/service/colplay/pillow-8.1.1
Bump pillow from 3.1.1 to 8.1.1 in /service/colplay
Bumps [pillow](https://github.com/python-pillow/Pillow) from 3.1.1 to 8.1.1.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst)
- [Commits](https://github.com/python-pillow/Pillow/compare/3.1.1...8.1.1)
Signed-off-by: dependabot[bot] <support@github.com>
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
---|---|
date | Thu, 18 Mar 2021 20:13:07 +0000 |
parents | a2e3a342315c |
children |
line wrap: on
line source
JOB=tiny_screen PORT=10013 RUNHOST=frontdoor TAG=bang6:5000/${JOB}_x86:latest TAG_PI=bang6:5000/${JOB}_pi:latest push_x86: build_x86 docker push ${TAG} push_pi: build_pi docker push ${TAG_PI} build_x86: rm -rf tmp_ctx mkdir -p tmp_ctx cp -a Dockerfile ../../lib/*.py *.py *.txt *.html anim font tmp_ctx docker build --network=host -t ${TAG} tmp_ctx build_pi: rm -rf tmp_ctx mkdir -p tmp_ctx cp -a Dockerfile.pi ../../lib/*.py *.py *.txt *.html anim font tmp_ctx docker build -f Dockerfile.pi --network=host -t ${TAG_PI} tmp_ctx build_image_pi: build_pi push_pi shell: build_x86 docker run --rm -it --name=$(JOB)_shell --cap-add SYS_PTRACE --net=host $(TAG) /bin/sh local_run: build_x86 docker run --rm -it --net=host --name=$(JOB)_local -e DISPLAY=$(DISPLAY) -e HOME=$(HOME) -v $(HOME):$(HOME) -v /tmp/.X11-unix:/tmp/.X11-unix -v `pwd`/index.html:/opt/index.html bang6:5000/tiny_screen_x86:latest python ./tiny_screen.py -v -x # try pi kernel 20181112-1 fresh_sudo: sudo -v redeploy: fresh_sudo push_pi sudo /my/proj/ansible/playbook -l $(RUNHOST) -t tiny_screen supervisorctl -s http://$(RUNHOST):9001/ restart $(JOB)_$(PORT)