Skip to content

Commit

Permalink
Update Dockerfile, remove onbuild flavour
Browse files Browse the repository at this point in the history
Signed-off-by: Knut Ahlers <knut@ahlers.me>
  • Loading branch information
Luzifer committed Jan 1, 2019
1 parent 585f10a commit 460bf2d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
FROM ruby:2.1.9-onbuild
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"]

0 comments on commit 460bf2d

Please sign in to comment.