mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-01 09:52:42 +01: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
|