Skip to content

Commit 95add92

Browse files
authored
Merge pull request #179 from DenverM80/c_docker_locale_master
C docker locale master
2 parents ccbbf19 + 5b240bc commit 95add92

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docker/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
FROM ubuntu:latest
22

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+
37
# Combine all apt-get install commands or Docker will attempt to use cache
48
RUN apt-get update && apt-get install -y \
59
autoconf \
@@ -21,7 +25,7 @@ RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A170311380
2125
RUN \curl -sSL https://get.rvm.io | bash -s stable
2226

2327
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"
2529
RUN /bin/bash -l -c "gem install rake --no-ri --no-rdoc"
2630

2731
RUN /bin/bash -l -c "curl -Lo- https://bit.ly/janus-bootstrap | bash"

0 commit comments

Comments
 (0)