From aad4be8ef551ea0d03df000cec80570fabb64c67 Mon Sep 17 00:00:00 2001 From: Vinayakumar B Date: Fri, 11 Aug 2023 08:16:01 +0000 Subject: [PATCH] Add arm64 build file for Ubuntu-focal --- build/arm64_focal/Dockerfile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 build/arm64_focal/Dockerfile diff --git a/build/arm64_focal/Dockerfile b/build/arm64_focal/Dockerfile new file mode 100644 index 0000000..7f6bc9a --- /dev/null +++ b/build/arm64_focal/Dockerfile @@ -0,0 +1,29 @@ +FROM ubuntu:focal + +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get -y update \ + && apt-get -y install \ + autoconf \ + automake \ + bison \ + debhelper \ + debian-keyring \ + default-jdk \ + devscripts \ + flex \ + gcc \ + git \ + libcurl4-openssl-dev \ + libhiredis-dev \ + libltdl-dev \ + libmysqlclient-dev \ + libssl-dev \ + libtool \ + libyajl-dev \ + lsb-release \ + make \ + pkg-config \ + python2-dev \ + python3-dev \ + && apt-get -y clean \ + && rm -rf /var/lib/apt/lists/*