mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-26 22:34:02 +01:00
14 lines
269 B
Docker
14 lines
269 B
Docker
|
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"]
|