zmk_mf68/.devcontainer/Dockerfile

16 lines
287 B
Docker
Raw Normal View History

FROM zmkfirmware/zephyr-west-action-arm
ENV LC_ALL=C
RUN apt-get -y update && \
2020-10-01 16:56:18 +10:00
apt-get -y upgrade && \
apt-get install --no-install-recommends -y \
ssh \
nano \
locales \
gpg && \
rm -rf /var/lib/apt/lists/*
COPY .bashrc tmp
RUN mv /tmp/.bashrc ~/.bashrc