diff --git a/docker/rivet-herwig/Dockerfile b/docker/rivet-herwig/Dockerfile
--- a/docker/rivet-herwig/Dockerfile
+++ b/docker/rivet-herwig/Dockerfile
@@ -1,26 +1,26 @@
-FROM hepstore/rivet:2.6.0
+FROM hepstore/rivet:2.6.1
 MAINTAINER Andy Buckley <andy.buckley@cern.ch>
 
 RUN dnf install -y boost-devel
 
 RUN mkdir /code
 
 RUN cd /code && \
     wget https://www.hepforge.org/archive/lhapdf/LHAPDF-6.2.1.tar.gz -O- | tar xz && \
     cd LHAPDF-*/ && ./configure --prefix=/usr/local && \
     make -j5 && make install
 
 RUN lhapdf install MMHT2014{,n}lo68cl
 
 RUN cd /code && \
     wget https://www.hepforge.org/archive/thepeg/ThePEG-2.1.3.tar.bz2 -O- | tar xj && \
     cd ThePEG-*/ && ./configure --enable-shared --{prefix,with-{fastjet,hepmc,lhapdf,rivet}}=/usr/local && \
     make -j5 && make install
 
 RUN cd code/ && \
     wget https://www.hepforge.org/archive/herwig/Herwig-7.1.3.tar.bz2 -O- | tar xj && \
     cd Herwig-*/ && \
     ./configure --{prefix,with-{thepeg,fastjet}}=/usr/local && \
     make -j5 && make install
 
 RUN rm -rf /code
diff --git a/docker/rivet-pythia/Dockerfile b/docker/rivet-pythia/Dockerfile
--- a/docker/rivet-pythia/Dockerfile
+++ b/docker/rivet-pythia/Dockerfile
@@ -1,23 +1,23 @@
-FROM hepstore/rivet:2.6.0
+FROM hepstore/rivet:2.6.1
 MAINTAINER Andy Buckley <andy.buckley@cern.ch>
 
 RUN dnf install -y rsync
 RUN mkdir /code
 
 RUN cd /code && \
     wget https://www.hepforge.org/archive/lhapdf/LHAPDF-6.2.1.tar.gz -O- | tar xz && \
     cd LHAPDF-*/ && ./configure --prefix=/usr/local && \
     make -j5 && make install
 
 RUN cd /code && \
     wget http://home.thep.lu.se/~torbjorn/pythia8/pythia8235.tgz -O- | tar xz && \
     cd pythia*/ && ./configure --enable-shared --{prefix,with-{hepmc2,lhapdf6}}=/usr/local && \
     make -j5 && make install
 
 RUN cd code/ && \
     wget https://www.hepforge.org/archive/agile/Sacrifice-1.1.1b.tar.gz -O- | tar xz && \
     cd Sacrifice-*/ && \
     ./configure --{prefix,with-{pythia,hepmc,LHAPDF}}=/usr/local && \
     make -j5 && make install
 
 RUN rm -rf /code