Spaces:
Running
on
A10G
Running
on
A10G
File size: 1,038 Bytes
0741f7a b3ba317 cb850a3 f1fafb5 82f8abe 35eeb46 c718c23 d6db155 0943f6b 4bc9b17 f9ed5fe 0943f6b d6db155 c718c23 f1fafb5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
FROM thecooltechguy/comfyui_launcher
RUN useradd -m -u 1000 user
RUN chown -R user:user /app || true
RUN chown -R user:user /var || true
RUN chown -R user:user /run || true
#######################################
# Start root user section
#######################################
USER root
RUN mkdir /data && chown user:user /data
RUN sed -i 's/listen \(\[::\]:\)\?80 default_server;/listen \17860 default_server;/g' /etc/nginx/nginx.conf
RUN cat /app/web/src/pages/index.tsx
RUN sed -i '/<Nav \/>/!b;n;a\<div class="flex flex-row space-x-5 p-5">The launcher may not work behave properly in this shared environment. <a href="https://huggingface.co/spaces/subbytech/comfyui-launcher?duplicate=true"><img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/duplicate-this-space-md.svg"></a> to use it privately.</div>' /app/web/src/pages/index.tsx
#For debugging
RUN cat /app/web/src/pages/index.tsx
#######################################
# End root user section
#######################################
USER user
|