LT360
Organized folders, and added a BERT-Mini model and explainer to use for email classifications
c551752
| FROM python:3.9-slim | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| # Install dependencies | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| COPY ./app /code/app | |
| # Run the Uvicorn server when the container starts | |
| CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"] |