File size: 257 Bytes
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 /home/adminuser/venv/lib/python3.11/site-packages/gensim/matutils.py
CMD ["python", "app.py"] |