mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
60dbf5034b
Signed-off-by: Jess Frazelle <acidburn@github.com>
12 lines
250 B
Docker
12 lines
250 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-document \
|
|
&& apk del .build-deps
|