Skip to content
This repository was archived by the owner on Aug 7, 2018. It is now read-only.

Commit 8e10b37

Browse files
committed
Hard setting the locale in the ENV
1 parent 9e1acb7 commit 8e10b37

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
FROM debian:jessie
22
MAINTAINER Steve Lambe <@firrae>
33

4+
ENV LANG=C \
5+
LC_ALL=C \
6+
47
RUN apt-get update && \
58
apt-get install -y git curl && \
69
apt-get clean && \
710
rm -Rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
811

912
RUN curl https://install.meteor.com/ | sh
1013

11-
RUN echo 'export LANG=C' >> /etc/profile \
12-
&& echo 'export LC_ALL=C' >> /etc/profile \
13-
&& echo '' >> /etc/profile
14-
1514
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)