RVC-beta-v2-0618-get / Dockerfile
arxify's picture
Upload folder using huggingface_hub
ba2f5d6
raw
history blame contribute delete
No virus
163 Bytes
# 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"]