# SpaCy Microservice ## Den Service mit in einem Docker-Container starten ### 1. Build ```bash docker build -t spacy-service . ``` ### 2. Starten ```bash docker run -p 5050:5050 spacy-service ``` ## Beispielaufruf: ```bash curl -X POST http://localhost:5050/extraction \ -H "Content-Type: application/json" \ -d @text-per-page.json ```