auto1111 / Dockerfile
coinZee
yes
0481245
raw
history blame
317 Bytes
FROM python:3.10
# Create a user
RUN useradd -ms /bin/bash myuser
# Switch to the user
USER user
# Copy the launch.py file to the container
COPY * /home/user/
# Set the working directory
WORKDIR /home/user
# Execute the launch.py script
CMD ["python", "launch.py", "--skip-torch-cuda-test", "--use-cpu", "all"]