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
Richard Lister b37f5747b0 riemann-dash
2015-01-21 15:37:25 -05:00

19 lines
302 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 fog
WORKDIR /app
ADD config.rb /app/
EXPOSE 4567
CMD [ "riemann-dash" ]