#!/bin/bash if [ ! -f key ] || [ ! -f key.pub ]; then rm -f key key.pub && \ ssh-keygen -t ed25519 -N "" -f key fi docker build -t cpp20 .