Dockerfile.ubi9.debug 536 B

1234567891011121314
  1. # syntax=docker/dockerfile:1.2
  2. FROM registry.access.redhat.com/ubi9/ubi:latest
  3. LABEL maintainer="surkov.v@sdsys.ru"
  4. RUN --mount=type=bind,source=./files,target=/tmp/files \
  5. ls -lah /tmp/files | cat - > /meme.txt && \
  6. cat /tmp/files/requirements.txt >> /meme.txt
  7. # dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
  8. # dnf install -y python3-pip openssh-clients git openssl sshpass sudo && \
  9. # pip3 install -r /tmp/files/requirements.txt && \
  10. # adduser ansible
  11. #USER ansible