mirror of
https://github.com/Mangio621/Mangio-RVC-Fork.git
synced 2025-12-16 03:27:41 +01:00
13 lines
163 B
Docker
13 lines
163 B
Docker
|
|
# syntax=docker/dockerfile:1
|
||
|
|
|
||
|
|
FROM python:3.10-bullseye
|
||
|
|
|
||
|
|
EXPOSE 7865
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
RUN pip3 install -r requirements.txt
|
||
|
|
|
||
|
|
CMD ["python3", "infer-web.py"]
|