| FROM python:3.12.3 | |
| # Install pip requirements | |
| COPY requirements.txt . | |
| RUN python -m pip install -r requirements.txt | |
| WORKDIR /app | |
| COPY . /app | |
| COPY matutils.py /usr/local/lib/python3.10/site-packages/gensim/matutils.py | |
| CMD ["python", "app.py"] |
| FROM python:3.12.3 | |
| # Install pip requirements | |
| COPY requirements.txt . | |
| RUN python -m pip install -r requirements.txt | |
| WORKDIR /app | |
| COPY . /app | |
| COPY matutils.py /usr/local/lib/python3.10/site-packages/gensim/matutils.py | |
| CMD ["python", "app.py"] |