voicelead / Dockerfile
zeimoto's picture
matutils fix
4f936d9
raw
history blame
257 Bytes
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"]