10 lines
250 B
Docker
10 lines
250 B
Docker
# docker buildx build -t pymqi . -f Dockerfile.ubi9
|
|
|
|
FROM registry.access.redhat.com/ubi9/python-312:1-25.1729767846
|
|
|
|
USER 0
|
|
|
|
RUN yum update -y \
|
|
&& yum install -y tar wget python3 python3-devel python3-pip
|
|
|
|
ENTRYPOINT ["tail", "-f", "/dev/null"] |