dockerfiles/t/Dockerfile

17 lines
350 B
Docker
Raw Normal View History

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 \
io-console \
t \
--no-rdoc --no-ri \
&& apk del .build-deps
2014-10-09 20:39:37 +02:00
ENTRYPOINT [ "t" ]