dockerized-workstation/Makefile

11 lines
235 B
Makefile
Raw Normal View History

2019-01-11 06:22:53 +00:00
default: remote-build
build:
docker build -t sneak/dockerized-workstation .
upload:
rsync -avP --delete ./ root@las2.tor:dockerized-workstation/
remote-build: upload
ssh -t root@las2.tor "cd dockerized-workstation && make build"