1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00
Files
rlister-dockerfiles/riemann-dash/Dockerfile
2016-02-13 09:15:27 -06:00

20 lines
347 B
Docker

FROM rlister/ruby:2.1.5
MAINTAINER Ric Lister, rlister@gmail.com
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
apt-get install -y \
ca-certificates
RUN gem install --no-rdoc --no-ri riemann-dash thin
RUN gem install --no-rdoc --no-ri fog -v 1.19.0
WORKDIR /app
ADD config.rb /app/
EXPOSE 4567
CMD [ "riemann-dash" ]