This commit is contained in:
2019-01-11 06:22:53 +00:00
commit 7c027f5905
2 changed files with 23 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
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"