mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* add GitHub action to sync docs with website repo * remove trigger-docs-update from circleci jobs * update access token
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"] |