11 lines
235 B
Makefile
11 lines
235 B
Makefile
|
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"
|