Commit e7a1294a authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

devcontainer: fix `make documentation` error due to missing locale

VS Code started enforcing the locale but they decided to use en_US.UTF-8. It looks like they are going to change this to C.UTF-8, which is available on every POSIX compliant system but this might take some time. So instead, we add the required en_US.UTF-8 locale to the devcontainer for now.
parent 60343d16
...@@ -25,6 +25,7 @@ RUN apt-get update \ ...@@ -25,6 +25,7 @@ RUN apt-get update \
libpcap-dev \ libpcap-dev \
libpixman-1-dev \ libpixman-1-dev \
libprotobuf-dev \ libprotobuf-dev \
locales \
ninja-build \ ninja-build \
protobuf-compiler \ protobuf-compiler \
python-is-python3 \ python-is-python3 \
...@@ -36,6 +37,7 @@ RUN apt-get update \ ...@@ -36,6 +37,7 @@ RUN apt-get update \
wget \ wget \
nano \ nano \
vim \ vim \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /tmp/requirements.txt COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment