mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
7 lines
132 B
Docker
7 lines
132 B
Docker
|
FROM alpine
|
||
|
RUN apk update
|
||
|
RUN apk add rsync git bash
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|