Skip to content

Commit

Permalink
feat: Update to CPython version 3.9 base images (#58)
Browse files Browse the repository at this point in the history
* Update base images to:
   - python:3.9-slim-bullseye
   - neubauergroup/centos-build-base:3.9.9
  • Loading branch information
matthewfeickert authored Jan 12, 2022
1 parent eb204b7 commit cbed2b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ default: image
all: image

image:
docker pull python:3.8-slim-bullseye
docker pull python:3.9-slim-bullseye
docker build . \
-f docker/debian/Dockerfile \
--build-arg BUILDER_IMAGE=python:3.8-slim-bullseye \
--build-arg BUILDER_IMAGE=python:3.9-slim-bullseye \
--build-arg HEPMC_VERSION=2.06.11 \
--build-arg FASTJET_VERSION=3.3.4 \
--build-arg LHAPDF_VERSION=6.3.0 \
Expand All @@ -17,10 +17,10 @@ image:
--compress

test:
docker pull python:3.8-slim-bullseye
docker pull python:3.9-slim-bullseye
docker build . \
-f docker/debian/Dockerfile \
--build-arg BUILDER_IMAGE=python:3.8-slim-bullseye \
--build-arg BUILDER_IMAGE=python:3.9-slim-bullseye \
--build-arg HEPMC_VERSION=2.06.11 \
--build-arg FASTJET_VERSION=3.3.4 \
--build-arg LHAPDF_VERSION=6.3.0 \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Docker image for Python 3 compliant [MadGraph5_aMC@NLO](https://launchpad.net/mg
The Docker image contains:

* [MadGraph5_aMC@NLO](https://launchpad.net/mg5amcnlo) `v3.3.1`
* Python 3.8
* Python 3.9
* [HepMC2](http://hepmc.web.cern.ch/hepmc/) `v2.06.11`
* [LHAPDF](https://lhapdf.hepforge.org/) `v6.3.0`
* [FastJet](http://fastjet.fr/) `v3.3.4`
Expand Down
2 changes: 1 addition & 1 deletion docker/centos/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILDER_IMAGE=neubauergroup/centos-build-base:3.8.11
ARG BUILDER_IMAGE=neubauergroup/centos-build-base:3.9.9
FROM ${BUILDER_IMAGE} as builder

USER root
Expand Down
2 changes: 1 addition & 1 deletion docker/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILDER_IMAGE=python:3.8-slim-bullseye
ARG BUILDER_IMAGE=python:3.9-slim-bullseye
FROM ${BUILDER_IMAGE} as builder

USER root
Expand Down

0 comments on commit cbed2b9

Please sign in to comment.