Docker compose build args typo

This commit is contained in:
Luciano Gervasoni
2025-04-07 12:39:38 +02:00
parent d78ade600f
commit 91043d27f1
3 changed files with 11 additions and 18 deletions

View File

@@ -8,16 +8,9 @@
"source": [
"import requests\n",
"\n",
"endpoint = \"http://localhost:80/get_missing_kids?pages=2\"\n",
"r = requests.get(endpoint)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"endpoint = \"http://localhost:80/get_missing_kids?pages={}\".format(2)\n",
"r = requests.get(endpoint)\n",
"\n",
"r.text"
]
}