6 lines
80 B
Docker
6 lines
80 B
Docker
|
FROM alpine:3.19.1
|
||
|
|
||
|
RUN apk add --no-cache aria2 bash
|
||
|
|
||
|
ENTRYPOINT ["/bin/bash"]
|