1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-13 00:38:04 +01:00

14 lines
270 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 11:39:37 -07:00
ENTRYPOINT ["t"]