mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
39e618c3cb
Signed-off-by: Jess Frazelle <me@jessfraz.com>
14 lines
265 B
Docker
14 lines
265 B
Docker
FROM ruby:alpine
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
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"]
|