mirror of
https://github.com/kanaka/mal.git
synced 2024-11-09 18:06:35 +03:00
7 lines
156 B
Bash
7 lines
156 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
IMAGE_NAME=${IMAGE_NAME:-mal-test-ubuntu-utopic}
|
||
|
GIT_TOP=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
docker build -t "${IMAGE_NAME}" "${GIT_TOP}/tests/"
|