diff options
author | KemoNine <mcrosson@kemonine.info> | 2020-11-27 21:09:58 -0500 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-11-27 21:22:58 -0500 |
commit | efe18a995b5240562d177087da73a8bc8e5fe113 (patch) | |
tree | ee20f849cb1785ba7cb5297c295fe8c55a072b93 /.devcontainer | |
parent | a26457d3842952dd106bae123bcfe711d40735fc (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/Dockerfile | 4 |
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/* |