commit 028a4e2a11d55e94a84547343754917d3b42e7ef Author: rhpidfyre Date: Thu Mar 13 02:08:56 2025 -0400 fix this 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