Add build with Docker, make and submodules

Starting to pull out hacks and custom instructions into a reproducible build.
This commit is contained in:
Ingvar Stepanyan
2021-08-06 20:49:19 +00:00
parent 8600639023
commit 2665a5bc41
7 changed files with 74 additions and 9 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM emscripten/emsdk:2.0.26
RUN apt-get update && apt-get install -qqy autoconf autopoint libtool-bin pkg-config
WORKDIR /src
ENV EM_CACHE /src/deps/.emcache
CMD ["sh", "-c", "emmake make -j`nproc`"]