Spaces:
Paused
Paused
Create Dockerfile
Browse files- Dockerfile +44 -0
Dockerfile
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use an official PyTorch image with CUDA support as the base image
|
2 |
+
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
3 |
+
|
4 |
+
# Install Git
|
5 |
+
RUN apt-get update && apt-get install -y git
|
6 |
+
|
7 |
+
# Set up a new user named "user" with user ID 1000
|
8 |
+
RUN useradd -m -u 1000 user
|
9 |
+
|
10 |
+
# Switch to the "user" user
|
11 |
+
USER user
|
12 |
+
|
13 |
+
ENV HOME=/home/user \
|
14 |
+
PATH=/home/user/.local/bin:$PATH \
|
15 |
+
PYTHONPATH=$HOME/app \
|
16 |
+
PYTHONUNBUFFERED=1 \
|
17 |
+
GRADIO_ALLOW_FLAGGING=never \
|
18 |
+
GRADIO_NUM_PORTS=1 \
|
19 |
+
GRADIO_SERVER_NAME=0.0.0.0 \
|
20 |
+
GRADIO_THEME=huggingface \
|
21 |
+
GRADIO_SHARE=False \
|
22 |
+
SYSTEM=spaces
|
23 |
+
|
24 |
+
# Set the working directory to the user's home directory
|
25 |
+
WORKDIR $HOME/app
|
26 |
+
|
27 |
+
# Clone your repository or add your code to the container
|
28 |
+
RUN git clone -b main https://github.com/Algolzw/daclip-uir $HOME/app
|
29 |
+
|
30 |
+
# Install dependencies
|
31 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
32 |
+
|
33 |
+
# Copy the pretrained file and folder into the working directory
|
34 |
+
COPY pretrained/ $HOME/app/universal-image-restoration/config/daclip-sde/options/
|
35 |
+
|
36 |
+
# Set the working directory to the app.py file's location
|
37 |
+
WORKDIR $HOME/app/universal-image-restoration/config/daclip-sde/
|
38 |
+
|
39 |
+
# Set the environment variable to specify the GPU device
|
40 |
+
ENV CUDA_DEVICE_ORDER=PCI_BUS_ID
|
41 |
+
ENV CUDA_VISIBLE_DEVICES=0
|
42 |
+
|
43 |
+
# Run your app.py script
|
44 |
+
CMD ["python", "app.py"]
|