Spaces:
Sleeping
Sleeping
File size: 309 Bytes
f51d06b 5c683f2 f51d06b 2dccc2a f51d06b 2dccc2a f51d06b 2dccc2a f51d06b 5c683f2 2dccc2a f51d06b | 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"]
|