diff --git a/Dockerfile b/Dockerfile
index 34a426459d09bfc42fe78bb959a13842d07e862f..d7ffb2a36a11cd70b4745d1fe58e762fa85f1e1b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,14 +6,15 @@ LABEL maintainer="Drupal Admins <drupal-admins@cern.ch>"
 # TODO: Download the binary for restic install, instead of using copart/restic repo
 ARG restic_version=0.12.1
 
-RUN yum install epel-release -y && \
+RUN yum update -y && \
+    yum install epel-release -y && \
     # install restic
     yum install yum-plugin-copr -y && \
     yum copr enable copart/restic -y && \
     yum install restic-${restic_version} -y && \
     # we need this to interact with manila OpenStack to get CephFS information
-    yum install centos-release-openstack-train -y && \
-    yum install -y /usr/bin/openstack --disableplugin=protectbase && \
+    yum install centos-release-openstack-xena -y && \
+    yum install -y /usr/bin/openstack python3-requests-kerberos && \
     yum clean all
 
 COPY ./tekton-task-templates /tekton-task-templates