ZeeABC / dockerfile
ZeeAI1's picture
Create dockerfile
91a1198 verified
raw
history blame
182 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN python -m spacy download en_core_web_sm
COPY . .
CMD ["python", "app.py"]