mirror of
https://github.com/Luzifer/github-masswatch.git
synced 2024-12-22 11:01:16 +00:00
11 lines
172 B
Docker
11 lines
172 B
Docker
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"]
|