comfyui / Dockerfile
chenqj110's picture
Create Dockerfile
feeec88 verified
Raw
History Blame Contribute Delete
356 Bytes
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y ttyd sudo curl wget git iproute2 net-tools iputils-ping htop tmux && rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 ubuntu && echo "ubuntu ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
USER ubuntu
WORKDIR /home/ubuntu
EXPOSE 7860
CMD ["ttyd", "-p", "7860", "bash"]