File size: 731 Bytes
a526c1c |
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 |
FROM python:3.10
# Install dependencies
RUN apt-get update && apt-get install -y \
git \
git-lfs \
ffmpeg \
libsm6 \
libxext6 \
cmake \
rsync \
libgl1-mesa-glx \
curl \
nodejs \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
# Clone the insightface repository and install scrfd manually
RUN git clone https://github.com/deepinsight/insightface.git /opt/insightface && \
cd /opt/insightface && \
pip install .
# Set working directory
WORKDIR /home/user/app
# Copy the application files
COPY --chown=1000:1000 . /home/user/app
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Command to run the application
CMD ["python", "app.py"]
|