-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
39 lines (35 loc) · 1.08 KB
/
Makefile
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
34
35
36
37
38
39
default: image
all: image
image:
docker pull python:3.10-slim-bullseye
docker build . \
-f docker/debian/Dockerfile \
--build-arg BUILDER_IMAGE=python:3.10-slim-bullseye \
--build-arg HEPMC_VERSION=2.06.11 \
--build-arg FASTJET_VERSION=3.3.4 \
--build-arg LHAPDF_VERSION=6.5.3 \
--build-arg PYTHIA_VERSION=8306 \
--build-arg MG_VERSION=3.5.1 \
-t scailfin/madgraph5-amc-nlo:latest \
-t scailfin/madgraph5-amc-nlo:3.5.1 \
--compress
test:
docker pull python:3.10-slim-bullseye
docker build . \
-f docker/debian/Dockerfile \
--build-arg BUILDER_IMAGE=python:3.10-slim-bullseye \
--build-arg HEPMC_VERSION=2.06.11 \
--build-arg FASTJET_VERSION=3.3.4 \
--build-arg LHAPDF_VERSION=6.5.3 \
--build-arg PYTHIA_VERSION=8306 \
--build-arg MG_VERSION=3.5.1 \
-t scailfin/madgraph5-amc-nlo:debug-local
test-centos:
docker build . \
-f docker/centos/Dockerfile \
--build-arg HEPMC_VERSION=2.06.11 \
--build-arg FASTJET_VERSION=3.3.4 \
--build-arg LHAPDF_VERSION=6.5.3 \
--build-arg PYTHIA_VERSION=8306 \
--build-arg MG_VERSION=3.5.1 \
-t scailfin/madgraph5-amc-nlo-centos:debug-local