mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
875b114093
Signed-off-by: Jess Frazelle <acidburn@google.com>
12 lines
254 B
Docker
12 lines
254 B
Docker
FROM ruby:alpine
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk add --no-cache \
|
|
coreutils
|
|
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
build-base \
|
|
&& gem install gmail-britta --no-rdoc --no-ri \
|
|
&& apk del .build-deps
|