summaryrefslogtreecommitdiff
path: root/tools/Dockerfile
diff options
context:
space:
mode:
authormagh <magh@maghmogh.com>2023-03-06 18:44:55 -0600
committermagh <magh@maghmogh.com>2023-03-06 18:44:55 -0600
commite80d9d8871b325a04b18f90a9ea4bb7fd148fb25 (patch)
tree79dbdb8506b7ff1e92549188d1b94cfc0b3503ae /tools/Dockerfile
add m1n1HEADmaster
Diffstat (limited to 'tools/Dockerfile')
-rw-r--r--tools/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/Dockerfile b/tools/Dockerfile
new file mode 100644
index 0000000..ae454fb
--- /dev/null
+++ b/tools/Dockerfile
@@ -0,0 +1,12 @@
+FROM debian:buster-slim
+ENV DEBIAN_FRONTEND=noninteractive
+
+RUN apt-get update && apt-get install -y build-essential bash git locales gcc-aarch64-linux-gnu libc6-dev-arm64-cross device-tree-compiler \
+ && rm -rf /var/lib/apt/lists/* \
+ && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
+ENV LANG en_US.utf8
+
+WORKDIR /m1n1
+COPY . .
+
+CMD ["/bin/bash"]