mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
17 lines
236 B
Docker
17 lines
236 B
Docker
|
FROM alpine:3.10
|
||
|
|
||
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
||
|
|
||
|
USER root
|
||
|
|
||
|
RUN apk add --no-cache transmission-daemon
|
||
|
|
||
|
# Default Conf Files
|
||
|
ADD config/ /config/
|
||
|
|
||
|
WORKDIR /root
|
||
|
|
||
|
ADD bootstrap.sh /etc/bootstrap.sh
|
||
|
|
||
|
CMD ["/etc/bootstrap.sh"]
|