commit
1ad7a405c1
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
FROM debian:stable |
||||
|
|
||||
|
WORKDIR /var/tmp |
||||
|
|
||||
|
ENV rootfs=rootfs |
||||
|
|
||||
|
RUN apt-get update && apt-get install debootstrap |
||||
|
|
||||
|
RUN debootstrap --arch=i386 sarge ${rootfs} http://archive.debian.org/debian/ \ |
||||
|
&& rm -rf $rootfs/{dev,proc} \ |
||||
|
&& mkdir -p $rootfs{dev,proc} |
||||
|
|
||||
|
RUN tar --numeric-owner -caf rootfs.tar.xz -C $rootfs --transform='s,^./,,' . |
||||
|
|
||||
|
FROM scratch |
||||
|
|
||||
|
COPY --from=0 /var/tmp/rootfs.tar.xz . |
Loading…
Reference in new issue