comfyui-launcher / Dockerfile
multimodalart's picture
Update Dockerfile
c718c23 verified
raw
history blame
373 Bytes
FROM thecooltechguy/comfyui_launcher
RUN useradd -m -u 1000 user
RUN chown -R user:user / || true
#######################################
# Start root user section
#######################################
USER root
RUN mkdir /data && chown user:user /data
#######################################
# End root user section
#######################################
USER user