mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
14 lines
451 B
Bash
Executable file
14 lines
451 B
Bash
Executable file
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ "$(docker images -q neko_server 2> /dev/null)" == "" ]; then
|
|
echo "Image 'neko_server' not found. Run ./build first."
|
|
exit 1
|
|
fi
|
|
|
|
#
|
|
# build server
|
|
docker run --rm -it \
|
|
-v "${PWD}/../:/src" \
|
|
--entrypoint="/bin/bash" \
|
|
neko_server -c '[ -f ./bin/golangci-lint ] || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.31.0;./bin/golangci-lint run';
|