mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
c43aa3485c
* 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"] |