Skip to content

Commit 8591073

Browse files
authored
Fix dockerfile (#2932)
We want python3.9. This was accidentally omitted from the backport of #2901.
1 parent 3074688 commit 8591073

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

agent/containers/images/Dockerfile.base.j2

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ COPY ./{{ pbench_repo_file }} /etc/yum.repos.d/pbench.repo
1212
# ... and finally, ensure the proper pbench-agent environment variables are set up.
1313
RUN \
1414
{% if is_centos_8 %}
15-
{{ pkgmgr }} module -y enable python36 && \
16-
{{ pkgmgr }} module -y disable python38 && \
15+
{{ pkgmgr }} module -y enable python39 && \
1716
{% endif %}
1817
{% if image_name == 'centos' %}
1918
{{ pkgmgr }} install -y --setopt=tsflags=nodocs https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ image_rev }}.noarch.rpm && \

0 commit comments

Comments
 (0)