mirror of
https://git.myvelabs.com/novnc/archlinux.git
synced 2025-12-17 23:56:20 +00:00
11 lines
336 B
Text
11 lines
336 B
Text
|
|
## Docker build
|
||
|
|
# eg, ARCHPKG=openssh
|
||
|
|
# eg, BUILDTAG=base
|
||
|
|
|
||
|
|
## Fetch latest mirrorlist
|
||
|
|
curl --fail --silent https://myvelabs.com/lab/archlinux/raw/branch/master/mirrorlist -o mirrorlist
|
||
|
|
|
||
|
|
DOCKER_BUILDKIT=1 docker build ./. \
|
||
|
|
--build-arg pkg=${ARCHPKG:-""} \
|
||
|
|
--tag myvnc/${BUILDTAG:-base} \
|
||
|
|
&& rm -f Dockerfile *.sh mirrorlist
|