You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
317 B
Docker
8 lines
317 B
Docker
6 years ago
|
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
|