From 028a4e2a11d55e94a84547343754917d3b42e7ef Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Thu, 13 Mar 2025 02:08:56 -0400 Subject: [PATCH] fix this --- src/Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/Dockerfile diff --git a/src/Dockerfile b/src/Dockerfile new file mode 100644 index 0000000..7a6a248 --- /dev/null +++ b/src/Dockerfile @@ -0,0 +1,19 @@ +# This image is built for AMD ROCM in mind +FROM archlinux + +ENV TERM=xterm-256color + +# Use LTS because as of 3/12/25 because glibc breaks libamdhip64.so +RUN pacman-key --init && \ + pacman -Syu --noconfirm && \ + pacman -S --noconfirm base linux-lts linux-lts-headers mkinitcpio unzip git curl which + +WORKDIR /opt + +RUN curl -Lo easy-diffusion.zip https://github.com/easydiffusion/easydiffusion/releases/download/v3.0.9c/Easy-Diffusion-Linux.zip && \ + unzip ./easy-diffusion.zip && \ + rm ./easy-diffusion.zip + +EXPOSE 9000/tcp + +ENTRYPOINT [ "/opt/easy-diffusion/start.sh" ] \ No newline at end of file