forked from lballabio/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (21 loc) · 1.53 KB
/
Makefile
File metadata and controls
28 lines (21 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: all boost quantlib-devenv quantlib-swig-devenv quantlib-jupyter
TAG:=latest
all:
boost:
cd boost && docker build --build-arg tag=$(TAG) \
--build-arg boost_version=$(BOOST_VERSION) \
--build-arg boost_dir=boost_$(subst .,_,$(BOOST_VERSION)) \
-t ghcr.io/lballabio/boost:$(TAG) .
quantlib-devenv:
cd quantlib-devenv && docker build --build-arg tag=$(TAG) -t ghcr.io/lballabio/quantlib-devenv:$(TAG) .
quantlib-swig-devenv:
cd quantlib-swig-devenv && docker build -f Dockerfile.base --build-arg tag=$(TAG) -t ghcr.io/lballabio/quantlib-swig-devenv:base . \
&& docker build -f Dockerfile.default -t ghcr.io/lballabio/quantlib-swig-devenv:default . \
&& docker build -f Dockerfile.threadsafe -t ghcr.io/lballabio/quantlib-swig-devenv:threadsafe . \
&& docker build -f Dockerfile.python3 -t ghcr.io/lballabio/quantlib-swig-devenv:python3 . \
&& docker build -f Dockerfile.csharp -t ghcr.io/lballabio/quantlib-swig-devenv:csharp . \
&& docker build -f Dockerfile.java -t ghcr.io/lballabio/quantlib-swig-devenv:java . \
&& docker build -f Dockerfile.r -t ghcr.io/lballabio/quantlib-swig-devenv:r . \
&& docker build -f Dockerfile.scala -t ghcr.io/lballabio/quantlib-swig-devenv:scala .
quantlib-jupyter:
cd quantlib-jupyter && docker build --build-arg tag=$(TAG) -t lballabio/quantlib-jupyter:$(TAG) .