Add Dockerfile.arm64v8

This commit is contained in:
Johan Gunnarsson 2019-03-26 20:08:41 +00:00
parent 2b3d4c8b65
commit 83936e66a3
1 changed files with 20 additions and 0 deletions

View File

@ -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