Spaces:
Sleeping
Sleeping
File size: 1,054 Bytes
899bb8e 08b5f9a 7d1ac27 efbbba0 d52e0cb d562996 899bb8e d52e0cb 899bb8e d562996 899bb8e d52e0cb da98c4a d562996 899bb8e e10da9a d562996 899bb8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# Base image
FROM python:3.10-slim
RUN apt-get update && \
apt-get install -y build-essential ffmpeg wget && \
rm -rf /var/lib/apt/lists/*
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
# Install dependencies
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY --chown=user app ./app
# Download models
RUN mkdir -p ./app/models && \
wget -O ./app/models/chu2.pth https://huggingface.co/Wanlau/RVC_BanGDream/resolve/main/Chiyu_v2_48k/Chiyu_v2_48k.pth && \
wget -O ./app/models/chu2.index https://huggingface.co/Wanlau/RVC_BanGDream/resolve/main/Chiyu_v2_48k/added_IVF256_Flat_nprobe_1_Chiyu_v2_48k_v2.index
# Expose port
EXPOSE 7860
# Run FastAPI with uvicorn
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|