diff --git a/.containers/docker/Dockerfile b/.containers/docker/Dockerfile
index b709762c9e108f4052c7aa1f21481e6d5cbf2527..0de1b0cee9aab22bf8e29e8d7a17f93ddd842f3a 100644
--- a/.containers/docker/Dockerfile
+++ b/.containers/docker/Dockerfile
@@ -18,12 +18,12 @@ LABEL maintainer="Whitney Armstrong <warmstrong@anl.gov>" \
 
 RUN cd /tmp \
       && apt-get update && apt-get install rsync -y \
-      && wget http://home.thep.lu.se/~torbjorn/pythia8/pythia8303.tgz \
-      && tar -zxf pythia8303.tgz && cd pythia8303 \
+      && wget http://home.thep.lu.se/~torbjorn/pythia8/pythia8244.tgz \
+      && tar -zxf pythia8244.tgz && cd pythia8244 \
       && ./configure --prefix=/usr/local --enable-shared --enable-64bit --with-root --with-hepmc3 \
       && make -j30 \
       && make install  \
-      && cd /tmp && rm -rf /tmp/pythia8303
+      && cd /tmp && rm -rf /tmp/pythia8244
 
 
 RUN cd /tmp             \