voicelead / Dockerfile
zeimoto's picture
fix Dockerfile
723bcb8
raw
history blame contribute delete
No virus
245 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 /usr/local/lib/python3.10/site-packages/gensim/matutils.py
CMD ["python", "app.py"]