blob: 184aae9a5cb49d61860bbe586fe480b430ff4a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM zmkfirmware/zephyr-west-action-arm
RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get install --no-install-recommends -y \
ssh \
gpg && \
rm -rf /var/lib/apt/lists/*
COPY .bashrc tmp
RUN mv /tmp/.bashrc ~/.bashrc
|