File size: 245 Bytes
4f936d9
 
 
 
 
 
 
 
 
723bcb8
4f936d9
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]