8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export MOTO_PORT=${MOTO_PORT:-5000}
|
|
|
|
set -e
|
|
pip install $(ls /moto/dist/moto*.gz)[server,all]
|
|
moto_server -H 0.0.0.0 -p ${MOTO_PORT}
|