File size: 1,439 Bytes
22af12b 6c0ac6b feb614e 337a72c 28669c0 feb614e 337a72c feb614e e1b63fe c4c05a2 e1b63fe 1f36a02 c4c05a2 1f36a02 c4c05a2 feb614e 337a72c b0c2749 337a72c e4eb15d feb614e 317eda8 feb614e 317eda8 | 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 39 40 41 42 43 44 45 | FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
# FROM python:3.10.9
# Use a more secure method for setting the working directory
WORKDIR /app
# Copy the requirements file
COPY ./requirements.txt /app/requirements.txt
# Install dependencies (git needed to clone SoulForge below)
RUN apt update && apt install -y python3 python3-pip git
# Install all requirements first so pip is fully upgraded before SoulForge
RUN python3 -m pip install --no-cache-dir --upgrade -r /app/requirements.txt
# Install SoulForge: clone and copy the package directly into site-packages
RUN git clone --depth=1 https://github.com/Jofthomas/SoulForge.git /tmp/soulforge \
&& cp -r /tmp/soulforge/soulforge /usr/local/lib/python3.10/dist-packages/soulforge \
&& rm -rf /tmp/soulforge
RUN apt update && apt install -y ffmpeg
# Add and configure the user
RUN useradd -m -u 1000 user
# Set environment variables for the user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the user and working directory
USER user
WORKDIR $HOME/app
# Copy the application code
COPY --chown=user . $HOME/app
# Ensure the user has the correct permissions
RUN chmod -R 777 $HOME/app
# Set additional environment variables
ENV NUMBA_CACHE_DIR=/tmp/NUMBA_CACHE_DIR/
ENV MPLCONFIGDIR=/tmp/MPLCONFIGDIR/
ENV HOME=/home/user
ENV PATH="/opt/venv/bin:$PATH"
# Set the command to run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |