mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-04-21 06:14:00 +00:00
Refactor Dockerfile and docker-compose for ROCm support and improved build context Refactor docker-compose.yml for improved service configuration and organization
6 lines
146 B
Docker
6 lines
146 B
Docker
FROM bash:alpine3.22
|
|
|
|
RUN apk update && apk add parallel aria2
|
|
COPY . /docker
|
|
RUN chmod +x /docker/download.sh
|
|
ENTRYPOINT ["/docker/download.sh"]
|