auto_sd_docker/Dockerfile

15 lines
193 B
Docker

FROM python:3.10
WORKDIR /
RUN apt update \
&& apt install -y wget git htop libgl1 rsync
COPY ./entrypoint.sh .
EXPOSE 7860
VOLUME [ "/repo" ]
CMD [ "./entrypoint.sh" ]