Skip to content

Commit

Permalink
Fix dockerfile (#2932)
Browse files Browse the repository at this point in the history
We want python3.9. This was accidentally omitted from the backport
of #2901.
  • Loading branch information
ndokos committed Jul 1, 2022
1 parent 3074688 commit 8591073
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions agent/containers/images/Dockerfile.base.j2
Expand Up @@ -12,8 +12,7 @@ COPY ./{{ pbench_repo_file }} /etc/yum.repos.d/pbench.repo
# ... and finally, ensure the proper pbench-agent environment variables are set up.
RUN \
{% if is_centos_8 %}
{{ pkgmgr }} module -y enable python36 && \
{{ pkgmgr }} module -y disable python38 && \
{{ pkgmgr }} module -y enable python39 && \
{% endif %}
{% if image_name == 'centos' %}
{{ pkgmgr }} install -y --setopt=tsflags=nodocs https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ image_rev }}.noarch.rpm && \
Expand Down

0 comments on commit 8591073

Please sign in to comment.