We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccbbf19 + 5b240bc commit 95add92Copy full SHA for 95add92
docker/Dockerfile
@@ -1,5 +1,9 @@
1
FROM ubuntu:latest
2
3
+# Set the locale
4
+RUN locale-gen en_US.UTF-8
5
+ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
6
+
7
# Combine all apt-get install commands or Docker will attempt to use cache
8
RUN apt-get update && apt-get install -y \
9
autoconf \
@@ -21,7 +25,7 @@ RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A170311380
21
25
RUN \curl -sSL https://get.rvm.io | bash -s stable
22
26
23
27
RUN /bin/bash -l -c "rvm requirements"
24
-RUN /bin/bash -l -c "rvm install 2.2.0"
28
+RUN /bin/bash -l -c "rvm install 2.3.3"
29
RUN /bin/bash -l -c "gem install rake --no-ri --no-rdoc"
30
31
RUN /bin/bash -l -c "curl -Lo- https://bit.ly/janus-bootstrap | bash"
0 commit comments