view contrib/packaging/docker/rhel9 @ 51801:62b25293b620 default tip

typing: correct a type hint in `mercurial.manifest` Obvious typo that was flagged by PyCharm.
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 14 Aug 2024 03:25:16 -0400
parents 2edb41ed6c49
children
line wrap: on
line source

FROM rockylinux/rockylinux:9

RUN groupadd -g %GID% build && \
    useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build

RUN dnf install 'dnf-command(config-manager)' -y
# crb repository is necessary for docutils
RUN dnf config-manager --set-enabled crb

RUN yum install -y \
	gcc \
	gettext \
	make \
	python3-devel \
	python3-docutils \
	rpm-build

# For creating repo meta data
RUN yum install -y createrepo

# For rust extensions
RUN yum install -y cargo

# avoid incorrect docker image permissions on /tmp preventing writes by non-root users
RUN chmod 1777 /tmp