Skip to content
Snippets Groups Projects

Build Labgrid container images (derived from config in yocto-ktn/ci-tests)

Merged Frieder Schrempf requested to merge feature/add-labgrid-docker-images into main
Files
6
+ 16
0
FROM labgrid/client
RUN set -e ;\
apt update -q=2 ;\
apt install -q=2 --yes --no-install-recommends rsync wget python3-pip avahi-utils libnss-mdns;\
apt clean ;\
rm -rf /var/lib/apt/lists/*;\
pip3 install wget
COPY key/id_ecdsa* /root/.ssh/
COPY key/ssh_host_ecdsa_key.pub key/ssh_host_ecdsa_key.pub
RUN echo -n 'rpi?.local,192.168.200.? ' > /root/.ssh/known_hosts ;\
cat key/ssh_host_ecdsa_key.pub >> /root/.ssh/known_hosts
CMD ["/bin/bash"]
Loading