8 lines
135 B
Bash
Executable file
8 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
docker run --rm \
|
|
-t $(docker build -f ${DOCKERFILE_PATH:-Dockerfile}.test -q .) \
|
|
--color=no szurubooru/
|
|
|
|
exit $?
|