Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
@@ -52,14 +52,14 @@ RUN git clone https://github.com/lllyasviel/Fooocus . && \
|
|
52 |
pip install --no-cache-dir -r requirements_versions.txt
|
53 |
|
54 |
# remove the next line if you're running on your own GPU, it set max images to 3 and disables the API
|
55 |
-
#RUN sed -i "s|image_number = gr.Slider(label='Image Number', minimum=1, maximum=32|image_number = gr.Slider(label='Image Number', minimum=1, maximum=3|" webui.py && \
|
56 |
-
# sed -i "s|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue()|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue(concurrency_count=1,api_open=False)|" webui.py && \
|
57 |
-
# sed -i "s|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, auth=("admin", "pass1234"))|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, show_api=False, auth=("admin", "pass1234"))|" webui.py
|
58 |
-
|
59 |
-
|
60 |
RUN sed -i "s|image_number = gr.Slider(label='Image Number', minimum=1, maximum=32|image_number = gr.Slider(label='Image Number', minimum=1, maximum=3|" webui.py && \
|
61 |
sed -i "s|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue()|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue(concurrency_count=1,api_open=False)|" webui.py && \
|
62 |
-
sed -i "s|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, auth=(
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
ENV HOME=/home/user \
|
65 |
PATH=/home/user/.local/bin:$PATH \
|
|
|
52 |
pip install --no-cache-dir -r requirements_versions.txt
|
53 |
|
54 |
# remove the next line if you're running on your own GPU, it set max images to 3 and disables the API
|
|
|
|
|
|
|
|
|
|
|
55 |
RUN sed -i "s|image_number = gr.Slider(label='Image Number', minimum=1, maximum=32|image_number = gr.Slider(label='Image Number', minimum=1, maximum=3|" webui.py && \
|
56 |
sed -i "s|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue()|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue(concurrency_count=1,api_open=False)|" webui.py && \
|
57 |
+
sed -i "s|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, auth = ('admin', 'pass1234'), auth_message = 'Please input the login details provided')|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, show_api=False, auth= ('admin', 'pass1234'), auth_message='Please input the login details provided')|" webui.py
|
58 |
+
|
59 |
+
|
60 |
+
#RUN sed -i "s|image_number = gr.Slider(label='Image Number', minimum=1, maximum=32|image_number = gr.Slider(label='Image Number', minimum=1, maximum=3|" webui.py && \
|
61 |
+
# sed -i "s|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue()|shared.gradio_root = gr.Blocks(title='Fooocus ' + fooocus_version.version, css=modules.html.css).queue(concurrency_count=1,api_open=False)|" webui.py && \
|
62 |
+
# sed -i "s|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, auth=("admin", "pass1234"))|shared.gradio_root.launch(inbrowser=True, server_name=args.listen, server_port=args.port, share=args.share, show_api=True, auth=("admin", "pass1234"))|" webui.py
|
63 |
|
64 |
ENV HOME=/home/user \
|
65 |
PATH=/home/user/.local/bin:$PATH \
|