img: add img image

master
eater 5 years ago
parent 854f697c08
commit 3ebef8c7ef

@ -0,0 +1,7 @@
FROM d.xr.to/xbps-builder AS builder
COPY files/template /_workdir/srcpkgs/img/template
RUN xbps-build img
FROM d.xr.to/base:glibc AS main
LABEL maintainer="=@eater.me"
COPY --from=builder /_workdir/hostdir/binpkgs /tmp/xbps
RUN xbps-install -yR /tmp/xbps img && xbps-remove -Oo && rm -rf /var/cache/xbps/* /tmp/xbps

@ -0,0 +1,22 @@
# Template file for 'grumble'
pkgname=img
version=0.5.7
revision=1
short_desc="xxx"
build_style="go"
depends="runc"
go_import_path=github.com/genuinetools/img
go_package="${go_import_path}"
license="xxx"
homepage="xxx"
_branch="config"
distfiles="https://github.com/genuinetools/img/archive/v${version}.tar.gz"
checksum="d6a6fc254957cf60b4e0c212b2e8d1296afd1c2c7a852b265e067d788a61b0f7"
do_build() {
make BUILDTAGS="seccomp noembed"
}
do_install() {
vbin img
}
Loading…
Cancel
Save