Ce service exécute du code informatique dans un langage parmi une liste implémentée.
Il a besoin d'un Exercice (voir common/structs.go
) et du code à exécuter.
EXEC_LANG=python go build -o srvexec_$EXEC_LANG -tags $EXEC_LANG .
Il faut d'abord compiler le binaire d'API pour le language de votre choix.
Puis, l'importer dans l'image du language.
./build.sh -l python
docker run --rm --name srvexec-python -p 8080:8080 srvexec:python
Le header Content-Type
est important.
curl -X POST http://localhost:8080/exec -d '{"code": "print(f\"Hello {hex(3735928559)[2:]}, e^3={math.exp(3)}\")", "context": "import math"}' -H 'Content-Type: application/json' -s