Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 823 Bytes

DOCKER.md

File metadata and controls

30 lines (24 loc) · 823 Bytes

Build: As a Docker image

Note: Docker images are not optimized for size, resulting image will be over-bloated

There are example docker files that can be used to build this project with all optional dependencies installed. Resulting files will be installed to following paths:

/usr/local/bin
/usr/local/lib

Clone this repository recursively

git clone https://github.com/romanpunia/asx --recursive

To customize your build you may use following docker build-arg arguments:

$CONFIGURE # CMake configuration arguments
$COMPILE   # Compiler configuration arguments

Image: GCC Ubuntu

docker build -f var/images/gcc.Dockerfile -t asx-gcc:staging .

Image: LLVM Debian

docker build -f var/images/llvm.Dockerfile -t asx-llvm:staging .