mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-17 21:26:21 +00:00
8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Docker build
|
|
# Optional: buildtag
|
|
DOCKER_BUILDKIT=1 \
|
|
docker build . \
|
|
--build-arg debug=${debug:-""} \
|
|
--tag ${buildtag:-myvnc/alpine/i3} \
|
|
${@}
|