auto_sd_docker/Dockerfile

10 lines
133 B
Docker

FROM python:3.10
WORKDIR /sd
EXPOSE 7860
RUN apt update \
&& apt install -y wget git htop
CMD [ "./webui.sh", "-f" ]