9b29f9b861
Brings back the dockerfile so we can install SSH and GPG into it. This fixes git actions with SSH remotes, and GPG signing now works out of the box. This commit was made from inside the container!
8 lines
No EOL
196 B
Docker
8 lines
No EOL
196 B
Docker
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/* |