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 RUN chown -R user:user /etc || true RUN sed -i '//!b;n;a\
' /app/web/src/pages/index.tsx RUN cd /app/web && npm run build ####################################### # Start root user section ####################################### USER root RUN mkdir /data && chown user:user /data ####################################### # End root user section ####################################### USER user