13 lines
171 B
Bash
Executable file
13 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
json=$(cat config.json)
|
|
|
|
source "$(dirname $0)/build.sh"
|
|
|
|
echo $json | docker run \
|
|
-i \
|
|
--rm \
|
|
18fgsa/s3-resource-simple \
|
|
/opt/resource/check
|