Startonix / Modular-AI

Advanced AI Training and Building Repository
0 stars 0 forks source link

Docker Containerization for NLP Module #128

Open Startonix opened 1 month ago

Startonix commented 1 month ago

Dockerfile for NLP Module

FROM python:3.8-slim

WORKDIR /app

COPY requirements.txt requirements.txt RUN pip install -r requirements.txt

COPY . .

CMD ["python", "nlp_service.py"]