We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1ddd1 commit 8b12f11Copy full SHA for 8b12f11
1 file changed
Dockerfile
@@ -0,0 +1,21 @@
1
+FROM arm64v8/ubuntu:latest
2
+
3
+RUN apt update
4
+RUN apt -y install git g++ ninja-build wget xz-utils libunwind-dev libbfd-dev zlib1g-dev libzstd-dev libiberty-dev
5
6
+WORKDIR /build
7
+RUN git clone https://github.com/actboy168/luamake
8
+WORKDIR /build/luamake
9
+RUN git submodule init
10
+RUN git submodule update
11
+RUN ./compile/install.sh
12
+RUN ln -s /build/luamake/luamake /usr/local/bin/luamake
13
14
+COPY . /build/lua-debug
15
+WORKDIR /build/lua-debug
16
17
18
+RUN luamake lua compile/download_deps.lua
19
+RUN luamake
20
21
0 commit comments