summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorKemoNine <mcrosson@kemonine.info>2020-11-27 21:09:58 -0500
committerPete Johanson <peter@peterjohanson.com>2020-11-27 21:22:58 -0500
commitefe18a995b5240562d177087da73a8bc8e5fe113 (patch)
treeee20f849cb1785ba7cb5297c295fe8c55a072b93 /.devcontainer
parenta26457d3842952dd106bae123bcfe711d40735fc (diff)
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
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 184aae9..6c5677f 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -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/*