blob: 6c5677f4c7836c24055665397d35bc27954923e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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/*
COPY .bashrc tmp
RUN mv /tmp/.bashrc ~/.bashrc
|