FROM ruby:alpine LABEL maintainer "Jessie Frazelle " 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 ENTRYPOINT ["t"]