diff --git a/dockerfiles/Dockerfile.arm64v8 b/dockerfiles/Dockerfile.arm64v8 new file mode 100644 index 0000000..3ce7dcd --- /dev/null +++ b/dockerfiles/Dockerfile.arm64v8 @@ -0,0 +1,20 @@ +FROM debian:latest +RUN apt-get update +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get -y install debootstrap \ + debian-archive-keyring \ + git \ + build-essential \ + gcc-arm-linux-gnueabihf \ + device-tree-compiler \ + bc \ + bison \ + flex \ + python-dev \ + swig \ + parted \ + e2fsprogs \ + pwgen +ENV PATH="/debimg:${PATH}" +COPY . /debimg +WORKDIR /debimg