mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-05-03 09:05:38 +02:00
9 lines
217 B
Docker
9 lines
217 B
Docker
|
FROM ruby:alpine
|
||
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||
|
|
||
|
RUN set -x \
|
||
|
&& apk add --no-cache --virtual .build-deps \
|
||
|
build-base \
|
||
|
&& gem install gmail-britta --no-rdoc --no-ri \
|
||
|
&& apk del .build-deps
|