You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvapi/docker/start.sh

8 lines
230 B

tmpfile=$(mktemp /tmp/mj-api.XXXX)
echo "SECRET=mysecrettoken" >> $tmpfile
echo "SQLITE=True" >> $tmpfile
docker run --env-file $tmpfile \
majority-judgment/api-python:latest \
-c "pip install -r requirements-dev.txt; pytest"