Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -20,13 +20,14 @@ ENV HOME=/home/user \
|
|
20 |
GRADIO_NUM_PORTS=1 \
|
21 |
GRADIO_SERVER_NAME=0.0.0.0 \
|
22 |
GRADIO_THEME=huggingface \
|
|
|
23 |
SYSTEM=spaces
|
24 |
|
25 |
# Set the working directory to the user's home directory
|
26 |
WORKDIR $HOME/app
|
27 |
|
28 |
# Clone your repository or add your code to the container
|
29 |
-
RUN git clone -b dev https://github.com/
|
30 |
|
31 |
# Install specific versions of PyTorch, TorchText, and PyTorch Lightning
|
32 |
RUN pip install torch==1.12.1 torchvision==0.13.1 pytorch-lightning
|
|
|
20 |
GRADIO_NUM_PORTS=1 \
|
21 |
GRADIO_SERVER_NAME=0.0.0.0 \
|
22 |
GRADIO_THEME=huggingface \
|
23 |
+
GRADIO_SHARE=False \
|
24 |
SYSTEM=spaces
|
25 |
|
26 |
# Set the working directory to the user's home directory
|
27 |
WORKDIR $HOME/app
|
28 |
|
29 |
# Clone your repository or add your code to the container
|
30 |
+
RUN git clone -b dev https://github.com/camenduru/DiffBIR $HOME/app
|
31 |
|
32 |
# Install specific versions of PyTorch, TorchText, and PyTorch Lightning
|
33 |
RUN pip install torch==1.12.1 torchvision==0.13.1 pytorch-lightning
|