From 6399fb6b8c868ecc827e04d89a521d52ad678b70 Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Sun, 11 Sep 2016 19:36:59 +0200 Subject: [PATCH] Add ruby2.3-alpine image --- Dockerfile.ruby-2.3-alpine | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile.ruby-2.3-alpine diff --git a/Dockerfile.ruby-2.3-alpine b/Dockerfile.ruby-2.3-alpine new file mode 100644 index 0000000..fcd040b --- /dev/null +++ b/Dockerfile.ruby-2.3-alpine @@ -0,0 +1,8 @@ +FROM ruby:2.3-alpine + +RUN apk -U add git make gcc g++ + +# Set UTF-8 http://jaredmarkell.com/docker-and-locales/ +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8