This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/server/hooks/test

9 lines
171 B
Text
Raw Normal View History

#!/bin/sh
set -e
docker build -f ${DOCKERFILE_PATH:-Dockerfile}.test -t ${IMAGE_NAME}-test .
docker run --rm -t ${IMAGE_NAME}-test
docker rmi ${IMAGE_NAME}-test
exit $?