FROM ruby:alpine MAINTAINER Jessie Frazelle RUN apk add --no-cache \ libcurl RUN set -x \ && apk add --no-cache --virtual .build-deps \ build-base \ && gem install cloudapp --no-rdoc --no-ri \ && apk del .build-deps ENTRYPOINT ["cloudapp"]