File size: 265 Bytes
8e681e8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11

docker buildx build \
    -f Dockerfile \
    --tag dev-$(basename `git rev-parse --show-toplevel`) \
    . \
&& docker run -it \
    --rm \
    --mount type=bind,source="$(pwd)/src",target=/opt/src \
    dev-$(basename `git rev-parse --show-toplevel`) \
    bash