You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
144 B
Bash

#!/bin/bash
set -e
mkdir -p out
IMAGE=$(sudo docker build -q .)
sudo docker run -it \
--mount type=bind,src=$(pwd)/out,dst=/out \
$IMAGE