-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (28 loc) · 750 Bytes
/
Makefile
File metadata and controls
33 lines (28 loc) · 750 Bytes
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
29
30
31
32
33
default: image
all: image
image:
docker build . \
-f docker/debian/Dockerfile \
--build-arg LHAPDF_VERSION=6.2.3 \
--build-arg MOMEMTA_VERSION=v1.0.1 \
-t neubauergroup/momemta-python:latest \
-t neubauergroup/momemta-python:1.0.1
--compress .
debug:
docker build . \
-f docker/debian/Dockerfile \
--build-arg LHAPDF_VERSION=6.2.3 \
--build-arg MOMEMTA_VERSION=v1.0.1 \
-t neubauergroup/momemta-python:debug-local
debug-centos:
docker build . \
-f docker/centos/Dockerfile \
--build-arg MOMEMTA_VERSION=v1.0.1 \
-t neubauergroup/momemta-python-centos:debug-local
test:
docker run \
--rm \
-v $(shell pwd):$(shell pwd) \
-w $(shell pwd) \
neubauergroup/momemta-python:latest \
"bash tests/tt_fullyleptonic_tutorial.sh"