mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-30 22:02:40 +00:00
24 lines
894 B
Docker
24 lines
894 B
Docker
# Use Debian stretch until https://bugs.alpinelinux.org/issues/8131 is resolved.
|
|
FROM debian@sha256:de3eac83cd481c04c5d6c7344cd7327625a1d8b2540e82a8231b5675cef0ae5f AS qemu
|
|
RUN apt-get update && apt-get install -y qemu-user-static && \
|
|
mv /usr/bin/qemu-aarch64-static /usr/bin/qemu-aarch64 && \
|
|
mv /usr/bin/qemu-arm-static /usr/bin/qemu-arm && \
|
|
mv /usr/bin/qemu-ppc64le-static /usr/bin/qemu-ppc64le && \
|
|
mv /usr/bin/qemu-s390x-static /usr/bin/qemu-s390x
|
|
|
|
FROM linuxkit/alpine:86cd4f51b49fb9a078b50201d892a3c7973d48ec AS mirror
|
|
|
|
RUN apk add --no-cache go musl-dev
|
|
ENV GOPATH=/go PATH=$PATH:/go/bin
|
|
|
|
COPY main.go /go/src/binfmt/
|
|
RUN go-compile.sh /go/src/binfmt
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
WORKDIR /
|
|
COPY --from=qemu usr/bin/qemu-* usr/bin/
|
|
COPY --from=mirror /go/bin/binfmt usr/bin/binfmt
|
|
COPY etc/binfmt.d/00_linuxkit.conf etc/binfmt.d/00_linuxkit.conf
|
|
CMD ["/usr/bin/binfmt"]
|