Spaces:
Running
Running
File size: 309 Bytes
4cd0733 |
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", "app.py"]
|