Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2016-10-08 00:35:26 -07:00
parent 05ce09fee9
commit 722ee39bc3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

13
travis/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM ruby:alpine
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apk add --no-cache \
ca-certificates
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
&& gem install travis --no-rdoc --no-ri \
&& apk del .build-deps
ENTRYPOINT ["travis"]