Added docker file for docker registry distribution

This commit is contained in:
Torkel Ödegaard 2015-02-06 11:40:04 +01:00
parent cbe72ba9f4
commit 396b687e4b

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM phusion/baseimage
RUN apt-get -y update
RUN apt-get -y install libfontconfig
RUN mkdir -p /opt/grafana
ADD tmp/ /opt/grafana/
EXPOSE 3000
VOLUME ["/opt/grafana/data"]
WORKDIR /opt/grafana/
ENTRYPOINT ["./grafana", "web"]