Setup locales so make mnuconfig works properly inside the dev container ; add nano to the dev container so git has a valid editor in case users use git directly within the container

This commit is contained in:
KemoNine 2020-11-27 21:09:58 -05:00 committed by Pete Johanson
parent a26457d384
commit efe18a995b
1 changed files with 4 additions and 0 deletions

View File

@ -1,9 +1,13 @@
FROM zmkfirmware/zephyr-west-action-arm
ENV LC_ALL=C
RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get install --no-install-recommends -y \
ssh \
nano \
locales \
gpg && \
rm -rf /var/lib/apt/lists/*