1
0
Fork 0
mirror of https://github.com/Luzifer/github-masswatch.git synced 2024-12-22 11:01:16 +00:00
github-masswatch/Dockerfile

12 lines
172 B
Text
Raw Permalink Normal View History

FROM ruby:2.1.9-alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
COPY . /src
WORKDIR /src
RUN set -ex \
&& bundle install --full-index
ENTRYPOINT ["./watch.rb"]