13 lines
316 B
Docker
13 lines
316 B
Docker
FROM python:3.9-slim
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential libsndfile1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install -e .
|
|
RUN python -m unidic download
|
|
RUN python melo/init_downloads.py
|
|
|
|
CMD ["python", "./melo/app.py", "--host", "0.0.0.0", "--port", "8888"] |