mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 16:41:55 +00:00
10 lines
160 B
Docker
10 lines
160 B
Docker
|
FROM alpine:3.10
|
||
|
|
||
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
||
|
|
||
|
RUN apk add --no-cache rsync
|
||
|
|
||
|
ADD bootstrap.sh /etc/bootstrap.sh
|
||
|
|
||
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|