8 lines
80 B
Bash
8 lines
80 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -eux
|
||
|
|
|
||
|
|
TAG="$USER/alpine-sdk"
|
||
|
|
|
||
|
|
exec docker build --rm -t "$TAG" .
|