LightMirrors/aria2/Dockerfile
jinnyang 2d458a5ac7
Some checks failed
Deploy Jekyll with GitHub Pages dependencies preinstalled / build (push) Has been cancelled
Deploy Jekyll with GitHub Pages dependencies preinstalled / deploy (push) Has been cancelled
fix(aria2/Dockerfile): Connot found entrypoint.sh in alpine.
2024-10-07 22:09:03 +08:00

10 lines
141 B
Docker

FROM alpine:3.19.1
RUN apk update && apk add --no-cache aria2
ADD ./entrypoint.sh /
ADD ./aria2.conf /
EXPOSE 6800
CMD ["/entrypoint.sh"]