FROM python:3.10 # Create a user #RUN useradd -ms /bin/bash user # 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"]