Spaces:
Sleeping
Sleeping
File size: 321 Bytes
c8d59a8 2918956 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.10
# Install system libraries
RUN apt-get update && apt-get install -y libgl1 git-lfs
# Copy your app files
COPY . /app
WORKDIR /app
# Pull LFS files
RUN cd NAFNet && git lfs install && git lfs pull
# Install Python dependencies
RUN pip install -r requirements.txt
CMD ["python", "NAFNetModel/app.py"]
|