summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorYuriy Erofeev <yuiry.erofeev@toradex.com>2019-08-06 16:06:09 +0000
committeryuiry.erofeev <yuiry.erofeev@toradex.com>2019-08-30 05:22:19 -0400
commit6bd85ffba9f2297627b12ca9ace709ee403b5800 (patch)
treee4b741e8ce6b0dc4d5704907b296560af0b92fbf /Dockerfile
parentd899927728beca8357a5b4120b690cb3c1d80844 (diff)
Initial commit of the CI/CD pipeline
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 000000000000..980f9522208d
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,22 @@
+FROM debian:buster
+ENV PATH="/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf/bin/:$PATH" \
+ ARCH="arm" \
+ CROSS_COMPILE="arm-linux-gnueabihf-"
+RUN \
+ rm -rf /var/lib/apt/lists/* &&\
+ apt-get clean -y &&\
+ apt-get update -y &&\
+ apt-get install -y \
+ bc \
+ build-essential \
+ git \
+ libncurses5-dev \
+ lzop \
+ perl\
+ wget \
+ u-boot-tools \
+ tar
+# apt-get install -y uboot-mkimage \
+RUN wget -c https://releases.linaro.org/components/toolchain/binaries/7.4-2019.02/arm-linux-gnueabihf/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf.tar.xz &&\
+ tar xvf gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf.tar.xz
+CMD ["/bin/bash"] \ No newline at end of file