5 lines
74 B
Bash
5 lines
74 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
docker build . -t tex
|
||
|
docker run --rm -v .:/app/ tex "$@"
|