Set locale in Dockerfile to en_US.UTF-8

pull/502/head
Dominik Muhs 6 years ago
parent 5ceb83e219
commit c9fde40ffd
  1. 6
      Dockerfile

@ -5,6 +5,7 @@ COPY . /opt/mythril
RUN apt-get update \
&& apt-get install -y \
build-essential \
locales \
python-pip-whl=9.0.1-2 \
python3-pip=9.0.1-2 \
python3-setuptools \
@ -22,6 +23,9 @@ RUN apt-get update \
&& pip3 install -r requirements.txt \
&& python setup.py install
ENV PYTHONIOENCODING=UTF-8
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.en
ENV LC_ALL en_US.UTF-8
ENTRYPOINT ["/usr/local/bin/myth"]

Loading…
Cancel
Save