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.
1 parent 7a0d097 commit 9650d50Copy full SHA for 9650d50
Dockerfile
@@ -1,5 +1,13 @@
1
FROM debian:9
2
RUN echo 'export PATH=$HOME/.roswell/bin:$PATH' >> ~/.bashrc
3
-RUN apt update && apt install -y curl make bzip2 libcurl3-gnutls &&\
4
- curl -L -O https://github.com/roswell/roswell/releases/download/v19.3.10.97/roswell_19.3.10.97-1_amd64.deb &&\
+# Set the locale
+RUN apt-get install locales -y
5
+RUN sed --in-place '/en_US.UTF-8/s/^#//' /etc/locale.gen
6
+RUN locale-gen en_US.UTF-8
7
+ENV LANG en_US.UTF-8
8
+ENV LANGUAGE en_US:en
9
+ENV LC_ALL en_US.UTF-8
10
+RUN apt update && apt install -y curl make bzip2 libcurl3-gnutls
11
+RUN curl -L -O https://github.com/roswell/roswell/releases/download/v19.3.10.97/roswell_19.3.10.97-1_amd64.deb && \
12
dpkg -i *.deb && ros && rm *.deb
13
+
0 commit comments