Skip to content

Commit 8b12f11

Browse files
committed
dockerfile
1 parent be1ddd1 commit 8b12f11

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Dockerfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
RUN git submodule init
17+
RUN git submodule update
18+
RUN luamake lua compile/download_deps.lua
19+
RUN luamake
20+
21+

0 commit comments

Comments
 (0)