mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
d3f4ea910c
Signed-off-by: Jess Frazelle <acidburn@google.com>
15 lines
276 B
Docker
15 lines
276 B
Docker
FROM ruby:alpine
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
git
|
|
|
|
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"]
|